diff options
author | Christopher Faylor <me@cgf.cx> | 2009-04-27 04:31:22 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2009-04-27 04:31:22 +0000 |
commit | a8fdf91d85262507b0f3a6356f260143b3d185ee (patch) | |
tree | 25a63f25b957eba548a32ef08baa9f090aa461a1 | |
parent | 2addcd08303a6bb58b856746a20f495e51ae39b7 (diff) | |
download | cygnal-a8fdf91d85262507b0f3a6356f260143b3d185ee.tar.gz cygnal-a8fdf91d85262507b0f3a6356f260143b3d185ee.tar.bz2 cygnal-a8fdf91d85262507b0f3a6356f260143b3d185ee.zip |
* include/cygwin/socket.h: Define SOL_IPV6.
-rw-r--r-- | winsup/cygwin/ChangeLog | 4 | ||||
-rw-r--r-- | winsup/cygwin/include/cygwin/socket.h | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index c069b28c3..109f5e6ac 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,7 @@ +2009-04-26 Yaakov Selkowitz <yselkowitz@users.sourceforge.net> + + * include/cygwin/socket.h: Define SOL_IPV6. + 2009-04-21 Corinna Vinschen <corinna@vinschen.de> * ctype.cc (__set_ctype): Copy exact part of the current active diff --git a/winsup/cygwin/include/cygwin/socket.h b/winsup/cygwin/include/cygwin/socket.h index fdb842dc6..44b11b75a 100644 --- a/winsup/cygwin/include/cygwin/socket.h +++ b/winsup/cygwin/include/cygwin/socket.h @@ -198,6 +198,7 @@ struct OLD_msghdr /* Setsockoptions(2) level. Thanks to BSD these must match IPPROTO_xxx */ #define SOL_IP 0 +#define SOL_IPV6 41 #define SOL_IPX 256 #define SOL_AX25 257 #define SOL_ATALK 258 |