summaryrefslogtreecommitdiff
path: root/network/arp.h
diff options
context:
space:
mode:
authorAnton Kling <anton@kling.gg>2023-10-26 22:35:58 +0200
committerAnton Kling <anton@kling.gg>2023-10-30 21:49:48 +0100
commitf8e15da04472f5ed6a26e588de4a23cb3e1ba20b (patch)
tree9e646d6ba72dcc8f2eb95d04bac2a8b4a91ad946 /network/arp.h
parentcf60045bdb969f6fe44fe7dc9bf7cec593a0b05c (diff)
Kernel: Fixup rtl8139, add basic ARP and ethernet support
Currently the ARP appears to be able to respond to requests.
Diffstat (limited to 'network/arp.h')
-rw-r--r--network/arp.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/network/arp.h b/network/arp.h
new file mode 100644
index 0000000..1e8df1b
--- /dev/null
+++ b/network/arp.h
@@ -0,0 +1,3 @@
+#include <stdint.h>
+
+void handle_arp(uint8_t *payload);