modelgbp Generated OpFlex Model 1.7.0
TcpFlagsEnumT.hpp
1
10#include <boost/cstdint.hpp>
11#include <cstddef>
12namespace modelgbp {
13namespace l4 {
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}
SOME COPYRIGHT.
Definition OpcodeEnumT.hpp:12
Definition TcpFlagsEnumT.hpp:14