From 5026f823fa2708404302aa59d03401635a435c0b Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Fri, 27 Oct 2023 00:48:21 +0200 Subject: Kernel/Networking/LibC: Add syscalls and libc functions for UDP This allows a UDP server to be created in userland and read data. Currently it can't send data and is very very simplistic. Code is horrible and probably needs some fixing until it can be further built upon. --- network/arp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'network/arp.h') diff --git a/network/arp.h b/network/arp.h index 1e8df1b..8efda97 100644 --- a/network/arp.h +++ b/network/arp.h @@ -1,3 +1,3 @@ #include -void handle_arp(uint8_t *payload); +void handle_arp(const uint8_t *payload); -- cgit v1.2.3