summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/include/asm/socket.h
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2007-01-16 12:01:36 +0000
committerCorinna Vinschen <corinna@vinschen.de>2007-01-16 12:01:36 +0000
commit835fc32a3ae2bfcbb7c4b16dbbe3fc5906fd99d1 (patch)
treeaba7a98c444702f9fce0a5ec0b35bb2649c534d3 /winsup/cygwin/include/asm/socket.h
parent2fd167e6de34199a834a88a5d61a7b67e3a0d6c9 (diff)
downloadcygnal-835fc32a3ae2bfcbb7c4b16dbbe3fc5906fd99d1.tar.gz
cygnal-835fc32a3ae2bfcbb7c4b16dbbe3fc5906fd99d1.tar.bz2
cygnal-835fc32a3ae2bfcbb7c4b16dbbe3fc5906fd99d1.zip
* fhandler_socket.cc (fhandler_socket::ioctl): Handle SIOCGIFINDEX.
* net.cc (get_2k_ifconf): Ditto. (get_nt_ifconf): Fake SIOCGIFINDEX. (get_95_ifconf): Ditto. (get_ifconf): Handle SIOCGIFINDEX. Fake it for loopback on systems not supporting IP Helper Lib. * include/asm/socket.h (SIOCGIFINDEX): Define. * include/cygwin/if.h (struct ifreq): Add member for interface index. (ifr_ifindex): Define.
Diffstat (limited to 'winsup/cygwin/include/asm/socket.h')
-rw-r--r--winsup/cygwin/include/asm/socket.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/winsup/cygwin/include/asm/socket.h b/winsup/cygwin/include/asm/socket.h
index ed062190c..637cec294 100644
--- a/winsup/cygwin/include/asm/socket.h
+++ b/winsup/cygwin/include/asm/socket.h
@@ -1,6 +1,6 @@
/* asm/socket.h
- Copyright 1996, 1997, 1998, 2001 Red Hat, Inc.
+ Copyright 1996, 1997, 1998, 2001, 2005, 2007 Red Hat, Inc.
This file is part of Cygwin.
@@ -41,6 +41,7 @@ details. */
#define SIOCGIFHWADDR _IOW('s', 105, struct ifreq) /* Get hw addr */
#define SIOCGIFMETRIC _IOW('s', 106, struct ifreq) /* get metric */
#define SIOCGIFMTU _IOW('s', 107, struct ifreq) /* get MTU size */
+#define SIOCGIFINDEX _IOW('s', 108, struct ifreq) /* get if index */
#define SOL_SOCKET 0xffff /* options for socket level */