1
0
Fork 0
mirror of https://github.com/pavel-odintsov/fastnetmon synced 2024-05-03 22:26:30 +02:00
fastnetmon-rewritten/src/iana_ethertypes.hpp

15 lines
535 B
C++

#pragma once
enum IanaEthertype : unsigned int {
IanaEthertypeIPv4 = 2048,
IanaEthertypeARP = 2054,
// This one is not IANA certified, it's draft: https://datatracker.ietf.org/doc/html/draft-foschiano-erspan-03#section-4.2
IanaEthertypeERSPAN = 0x88BE,
IanaEthertypeVLAN = 33024,
IanaEthertypeIPv6 = 34525,
IanaEthertypeMPLS_unicast = 34887,
IanaEthertypeMPLS_multicast = 34888,
IanaEthertypePPPoE_discovery = 34915,
IanaEthertypePPPoE_session = 34916,
};