mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-07 11:39:44 +03:00
318b01e055
This is all pretty rickety but we can now respond to "arping" from the host while running inside QEMU. Very cool. :^)
11 lines
113 B
C
11 lines
113 B
C
#pragma once
|
|
|
|
#include <AK/Types.h>
|
|
|
|
struct EtherType {
|
|
enum : word {
|
|
ARP = 0x0806,
|
|
IPv4 = 0x0800,
|
|
};
|
|
};
|