modelgbp Generated OpFlex Model  1.3.0
EtherTypeEnumT.hpp
1 
10 #include <boost/cstdint.hpp>
11 #include <cstddef>
12 namespace modelgbp {
13 namespace l2 {
14  struct EtherTypeEnumT {
15  static const uint16_t CONST_ARP = 0x0806;
16  static const uint16_t CONST_FCOE = 0x8906;
17  static const uint16_t CONST_IPV4 = 0x0800;
18  static const uint16_t CONST_IPV6 = 0x86DD;
19  static const uint16_t CONST_MAC_SECURITY = 0x88E5;
20  static const uint16_t CONST_MPLS_UCAST = 0x8847;
21  static const uint16_t CONST_TRILL = 0x22F3;
22  static const uint16_t CONST_UNSPECIFIED = 0;
23  };
24 }
25 }
Definition: EtherTypeEnumT.hpp:14