This website requires JavaScript.
Explore
Help
Sign in
Stowage
/
ladybird
Watch
2
Star
0
Fork
You've already forked ladybird
0
mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced
2025-12-08 06:09:58 +00:00
Code
Issues
Projects
Releases
Packages
Wiki
Activity
267672efee
ladybird
/
Kernel
/
Net
/
EtherType.h
11 lines
129 B
C
Raw
Normal View
History
Unescape
Escape
Kernel: Bring up enough networking code that we can respond to ARP requests. This is all pretty rickety but we can now respond to "arping" from the host while running inside QEMU. Very cool. :^)
2019-03-11 23:21:38 +01:00
#
pragma once
#
include
<AK/Types.h>
struct
EtherType
{
Meta: Tweak .clang-format to not wrap braces after enums.
2019-06-07 17:13:23 +02:00
enum
:
word
{
Add clang-format file Also run it across the whole tree to get everything using the One True Style. We don't yet run this in an automated fashion as it's a little slow, but there is a snippet to do so in makeall.sh.
2019-05-28 11:53:16 +02:00
ARP
=
0x0806
,
IPv4
=
0x0800
,
}
;
Kernel: Bring up enough networking code that we can respond to ARP requests. This is all pretty rickety but we can now respond to "arping" from the host while running inside QEMU. Very cool. :^)
2019-03-11 23:21:38 +01:00
}
;
Reference in a new issue
Copy permalink