ladybird/Kernel/Net/EtherType.h

12 lines
151 B
C

#pragma once
#include <AK/Types.h>
struct EtherType {
enum : u16 {
ARP = 0x0806,
IPv4 = 0x0800,
IPv6 = 0x86DD,
};
};