mirror of
https://github.com/zeek/zeek.git
synced 2025-10-07 17:18:20 +00:00
Fix clang-tidy performance-enum-size warnings in headers
This commit is contained in:
parent
89ac0cb418
commit
f386deba94
76 changed files with 184 additions and 136 deletions
|
@ -18,7 +18,7 @@ namespace analyzer::tcp {
|
|||
|
||||
class TCP_Reassembler;
|
||||
|
||||
enum EndpointState {
|
||||
enum EndpointState : uint8_t {
|
||||
TCP_ENDPOINT_INACTIVE, // no SYN (or other packets) seen for this side
|
||||
TCP_ENDPOINT_SYN_SENT, // SYN seen, but no ack
|
||||
TCP_ENDPOINT_SYN_ACK_SENT, // SYN ack seen, no initial SYN
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue