mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
10 lines
129 B
C
10 lines
129 B
C
#pragma once
|
|
|
|
#include <AK/Types.h>
|
|
|
|
struct EtherType {
|
|
enum : word {
|
|
ARP = 0x0806,
|
|
IPv4 = 0x0800,
|
|
};
|
|
};
|