From b56f3c65ff72317cc290a421d364879faba58515 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Colin=20G=C3=BCnther?= Date: Thu, 10 Dec 2009 15:46:37 +0000 Subject: [PATCH] Add two more socket ioctl's as they are needed by the aironet (if_an.c) and wavelan (if_wi.c) drivers I'm currently porting. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34617 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/posix/sys/sockio.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/headers/posix/sys/sockio.h b/headers/posix/sys/sockio.h index c5c3dc5f27..f126bacc63 100644 --- a/headers/posix/sys/sockio.h +++ b/headers/posix/sys/sockio.h @@ -57,6 +57,9 @@ #define SIOCSDRVSPEC 8943 /* set driver-specific parameters */ #define SIOCGDRVSPEC 8944 /* get driver-specific parameters */ -#define SIOCEND 8944 /* Always set to highest SIOC* */ +#define SIOCSIFGENERIC 8945 /* generic IF set op */ +#define SIOCGIFGENERIC 8946 /* generic IF get op */ + +#define SIOCEND 8946 /* Always set to highest SIOC* */ #endif /* _SYS_SOCKIO_H */