1
0
Fork 0
mirror of https://github.com/pavel-odintsov/fastnetmon synced 2024-06-01 18:06:25 +02:00
fastnetmon-rewritten/src/iana_ethertypes.hpp

13 lines
387 B
C++
Raw Normal View History

#pragma once
enum IanaEthertype : unsigned int {
IanaEthertypeIPv4 = 2048,
IanaEthertypeARP = 2054,
IanaEthertypeVLAN = 33024,
IanaEthertypeIPv6 = 34525,
IanaEthertypeMPLS_unicast = 34887,
IanaEthertypeMPLS_multicast = 34888,
IanaEthertypePPPoE_discovery = 34915,
IanaEthertypePPPoE_session = 34916,
};