From d50d18c9da3a125f0196bec89802dec1c5b0b800 Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Fri, 27 Oct 2023 22:17:24 +0200 Subject: Kernel/LibC/Networking: Be able to send UDP messages Now it can send UDP messages to a specific IP address and libc has enough to create a basic UDP ECHO server, that is kinda cool. --- network/arp.h | 1 + 1 file changed, 1 insertion(+) (limited to 'network/arp.h') diff --git a/network/arp.h b/network/arp.h index 8efda97..c2beb94 100644 --- a/network/arp.h +++ b/network/arp.h @@ -1,3 +1,4 @@ #include +int get_mac_from_ip(const uint8_t ip[4], uint8_t mac[6]); void handle_arp(const uint8_t *payload); -- cgit v1.2.3