diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2013-05-31 18:08:25 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2013-05-31 18:08:25 +0000 |
commit | cd9ca871b093a264f24702d5e821a5439ea229be (patch) | |
tree | b944addbc31f588c0da96b9392ff199d607402d4 /winsup/cygwin/include/sys | |
parent | 697ce3c45fab52d8a06770c9686d082e09888485 (diff) | |
download | cygnal-cd9ca871b093a264f24702d5e821a5439ea229be.tar.gz cygnal-cd9ca871b093a264f24702d5e821a5439ea229be.tar.bz2 cygnal-cd9ca871b093a264f24702d5e821a5439ea229be.zip |
* include/sys/socket.h: Move SHUT_xx definitoins from here...
* include/cygwin/socket.h: ...to here.
Diffstat (limited to 'winsup/cygwin/include/sys')
-rw-r--r-- | winsup/cygwin/include/sys/socket.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/winsup/cygwin/include/sys/socket.h b/winsup/cygwin/include/sys/socket.h index 8a16be822..2d66abb26 100644 --- a/winsup/cygwin/include/sys/socket.h +++ b/winsup/cygwin/include/sys/socket.h @@ -1,7 +1,7 @@ /* sys/socket.h - Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2005, 2006, 2009, 2010 - Red Hat, Inc. + Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2005, 2006, 2009, 2010, + 2013 Red Hat, Inc. This file is part of Cygwin. @@ -21,11 +21,6 @@ extern "C" { #endif -/* SUS symbolic values for the second parm to shutdown(2) */ -#define SHUT_RD 0 /* == Win32 SD_RECEIVE */ -#define SHUT_WR 1 /* == Win32 SD_SEND */ -#define SHUT_RDWR 2 /* == Win32 SD_BOTH */ - #ifndef __INSIDE_CYGWIN_NET__ int accept (int, struct sockaddr *__peer, socklen_t *); int accept4 (int, struct sockaddr *__peer, socklen_t *, int flags); |