mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03: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,
|
|
};
|
|
};
|