5282ed58a9122792fa7874f3820308db12b2c79e
[gnulib.git] / lib / socket_.h
1 /* Provide a sys/socket header file for systems lacking it (read: mingw32).
2    Copyright (C) 2005, 2006 Free Software Foundation, Inc.
3    Written by Simon Josefsson.
4
5    This program is free software; you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 2, or (at your option)
8    any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software Foundation,
17    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
18
19 #ifndef _SYS_SOCKET_H
20 #define _SYS_SOCKET_H
21
22 /* This file is supposed to be used on platforms that lack
23    sys/socket.h.  It is intended to provide definitions and prototypes
24    needed by an application.
25
26    Currently only mingw32 is supported, which has the header files
27    winsock2.h and ws2tcpip.h that declare the sys/socket.h definitions
28    we need. */
29
30 #if HAVE_WINSOCK2_H
31 # include <winsock2.h>
32 #endif
33 #if HAVE_WS2TCPIP_H
34 # include <ws2tcpip.h>
35 #endif
36
37 /* For shutdown(). */
38 #if !defined(SHUT_RD) && defined (SD_RECEIVE)
39 # define SHUT_RD SD_RECEIVE
40 #endif
41 #if !defined(SHUT_WR) && defined (SD_SEND)
42 # define SHUT_WR 1
43 #endif
44 #if !defined(SHUT_RDWR) && defined (SD_BOTH)
45 # define SHUT_RDWR 2
46 #endif
47
48 #endif /* _SYS_SOCKET_H */