From f8e15da04472f5ed6a26e588de4a23cb3e1ba20b Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Thu, 26 Oct 2023 22:35:58 +0200 Subject: Kernel: Fixup rtl8139, add basic ARP and ethernet support Currently the ARP appears to be able to respond to requests. --- network/arp.h | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 network/arp.h (limited to 'network/arp.h') 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 + +void handle_arp(uint8_t *payload); -- cgit v1.2.3