From 8313d357499b3ac473120252143037e6e633bf60 Mon Sep 17 00:00:00 2001 From: brapru Date: Sat, 24 Jul 2021 20:04:11 -0400 Subject: Kernel: Support ioctl SIOCSARP and SIOCDARP Creates ioctl calls necessary to set/delete an entry from the ARP table --- Userland/Libraries/LibC/sys/ioctl_numbers.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Userland/Libraries/LibC/sys/ioctl_numbers.h') diff --git a/Userland/Libraries/LibC/sys/ioctl_numbers.h b/Userland/Libraries/LibC/sys/ioctl_numbers.h index 234a5decd2..0e24317ac9 100644 --- a/Userland/Libraries/LibC/sys/ioctl_numbers.h +++ b/Userland/Libraries/LibC/sys/ioctl_numbers.h @@ -79,6 +79,8 @@ enum IOCtlNumber { SIOCGIFCONF, SIOCADDRT, SIOCDELRT, + SIOCSARP, + SIOCDARP, FIBMAP, FIONBIO, }; @@ -117,5 +119,7 @@ enum IOCtlNumber { #define SIOCGIFCONF SIOCGIFCONF #define SIOCADDRT SIOCADDRT #define SIOCDELRT SIOCDELRT +#define SIOCSARP SIOCSARP +#define SIOCDARP SIOCDARP #define FIBMAP FIBMAP #define FIONBIO FIONBIO -- cgit v1.2.3