mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 02:35:07 +00:00
10 lines
113 B
C
10 lines
113 B
C
#pragma once
|
|
|
|
#include <AK/Types.h>
|
|
|
|
struct EtherType {
|
|
enum : word {
|
|
ARP = 0x0806,
|
|
IPv4 = 0x0800,
|
|
};
|
|
};
|