diff options
author | Anton Kling <anton@kling.gg> | 2024-06-09 22:05:53 +0200 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-06-09 22:05:53 +0200 |
commit | 15003d1b0abccc8bcef84386c4a6da176e41f883 (patch) | |
tree | d4f8c4f1602ee9e6c4332f3b0585d0e284d0f695 /kernel/network/ethernet.c | |
parent | ddd796325c9c703f007f046ed9f6fd9eb0ba6383 (diff) |
Add UDP
Diffstat (limited to 'kernel/network/ethernet.c')
-rw-r--r-- | kernel/network/ethernet.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/network/ethernet.c b/kernel/network/ethernet.c index 9fa5ef8..cf2e047 100644 --- a/kernel/network/ethernet.c +++ b/kernel/network/ethernet.c @@ -1,6 +1,7 @@ #include <assert.h> #include <drivers/rtl8139.h> #include <kmalloc.h> +#include <string.h> #include <network/arp.h> #include <network/bytes.h> #include <network/ethernet.h> |