mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-10 17:12:55 +02:00
12 lines
151 B
C
12 lines
151 B
C
#pragma once
|
|
|
|
#include <AK/Types.h>
|
|
|
|
struct EtherType {
|
|
enum : u16 {
|
|
ARP = 0x0806,
|
|
IPv4 = 0x0800,
|
|
IPv6 = 0x86DD,
|
|
};
|
|
};
|