diff options
author | Anton Kling <anton@kling.gg> | 2023-11-22 18:34:00 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2023-11-22 18:34:00 +0100 |
commit | b3866b0442f55b97833981a99c601f2143d10315 (patch) | |
tree | 2b0ae716da1e0d22311ecb119cc8d5cb2bbed822 /kernel/network/arp.c | |
parent | 615fb35efa8b13b7109e6974f86b295238163ebc (diff) |
Kernel/RTL8139/Networking fixes
This is just a commit containing multiple fixes since I am too lazy to
split them up.
Diffstat (limited to 'kernel/network/arp.c')
-rw-r--r-- | kernel/network/arp.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/kernel/network/arp.c b/kernel/network/arp.c index b5825be..baff528 100644 --- a/kernel/network/arp.c +++ b/kernel/network/arp.c @@ -83,7 +83,6 @@ void send_arp_request(const u8 ip[4]) { } int get_mac_from_ip(const u8 ip[4], u8 mac[6]) { - print_ip("ARP GETTING MAC FROM IP: ", ip); for (int i = 0; i < 10; i++) { if (0 != memcmp(arp_table[i].ip, ip, sizeof(u8[4]))) continue; |