modelgbp Generated OpFlex Model  1.3.0
TcpFlagsEnumT.hpp
1 
10 #include <boost/cstdint.hpp>
11 #include <cstddef>
12 namespace modelgbp {
13 namespace l4 {
14  struct TcpFlagsEnumT {
15  static const uint32_t CONST_ACK = 0x02;
16  static const uint32_t CONST_FIN = 0x04;
17  static const uint32_t CONST_RST = 0x08;
18  static const uint32_t CONST_SYN = 0x01;
19  static const uint32_t CONST_ESTABLISHED = 0x10;
20  static const uint32_t CONST_UNSPECIFIED = 0x00;
21  };
22 }
23 }
Definition: TcpFlagsEnumT.hpp:14