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