mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 20:07:35 +00:00
Kernel: Move networking related files into Kernel/Net/.
This commit is contained in:
parent
718bea73b3
commit
649c81a714
26 changed files with 61 additions and 63 deletions
10
Kernel/Net/EtherType.h
Normal file
10
Kernel/Net/EtherType.h
Normal file
|
@ -0,0 +1,10 @@
|
|||
#pragma once
|
||||
|
||||
#include <AK/Types.h>
|
||||
|
||||
struct EtherType {
|
||||
enum : word {
|
||||
ARP = 0x0806,
|
||||
IPv4 = 0x0800,
|
||||
};
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue