1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-20 02:35:07 +00:00
serenity/Kernel/Net/EtherType.h

10 lines
113 B
C

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