wined3d: Get rid of IWineD3DGeometryShader.
[wine] / include / winsock.h
1 /* WINSOCK.H--definitions to be used with the WINSOCK.DLL
2  *
3  * This header file corresponds to version 1.1 of the Windows Sockets
4  * specification.
5  *
6  * Copyright (C) the Wine project
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21  */
22
23 #ifdef __WINESRC__
24 # ifndef __WINE_WINSOCK2__
25 #  error Please use Winsock2 in Wine
26 # endif
27 #endif
28
29 #ifndef __WINE_WINSOCKAPI_STDLIB_H
30 #define __WINE_WINSOCKAPI_STDLIB_H
31
32 /*
33  * This section defines the items that conflict with the Unix headers.
34  */
35 #ifndef USE_WS_PREFIX
36 /* We are not using the WS_ prefix we risk getting conflicts for
37  * everything related to select.
38  */
39 # ifdef FD_CLR
40 /* Too late, the Unix version of stdlib.h was included before winsock.h.
41  * This means select and all the related stuff is already defined and we
42  * cannot override types and function prototypes.
43  * All we can do is disable all these symbols so that they are not used
44  * inadvertently.
45  */
46 #  include <sys/types.h>
47 #  undef FD_SETSIZE
48 #  undef FD_CLR
49 #  undef FD_SET
50 #  undef FD_ZERO
51 #  undef FD_ISSET
52
53 #  define FD_SETSIZE Include_winsock_h_before_stdlib_h_or_use_the_MSVCRT_library
54 #  define FD_CLR     Include_winsock_h_before_stdlib_h_or_use_the_MSVCRT_library
55 #  define FD_SET     Include_winsock_h_before_stdlib_h_or_use_the_MSVCRT_library
56 #  define FD_ZERO    Include_winsock_h_before_stdlib_h_or_use_the_MSVCRT_library
57 #  define FD_ISSET   Include_winsock_h_before_stdlib_h_or_use_the_MSVCRT_library
58 #  define fd_set     Include_winsock_h_before_stdlib_h_or_use_the_MSVCRT_library
59 #  define select     Include_winsock_h_before_stdlib_h_or_use_the_MSVCRT_library
60 # elif defined(RLIM_INFINITY)
61 /* On Darwin stdlib.h includes sys/resource.h which defines timeval but not the fd_set macros */
62 #  define fd_set unix_fd_set
63 #  include <sys/types.h>
64 #  include <time.h>
65 #  include <stdlib.h>
66 #  undef fd_set
67 #  undef FD_SETSIZE
68 #  undef FD_CLR
69 #  undef FD_SET
70 #  undef FD_ZERO
71 #  undef FD_ISSET
72 #  define select     Include_winsock_h_before_sys_types_h_or_use_the_MSVCRT_library
73 #  define timeval    Include_winsock_h_before_sys_types_h_or_use_the_MSVCRT_library
74 # else  /* FD_CLR */
75 /* stdlib.h has not been included yet so it's not too late. Include it now
76  * making sure that none of the select symbols is affected. Then we can
77  * define them with our own values.
78  */
79 #  define fd_set unix_fd_set
80 #  define timeval unix_timeval
81 #  define select unix_select
82 #  define socklen_t unix_socklen_t
83 #  define u_long unix_u_long
84 #  include <sys/types.h>
85 #  include <time.h>
86 #  include <stdlib.h>
87 #  undef fd_set
88 #  undef timeval
89 #  undef select
90 #  undef socklen_t
91 #  undef u_long
92 #  undef FD_SETSIZE
93 #  undef FD_CLR
94 #  undef FD_SET
95 #  undef FD_ZERO
96 #  undef FD_ISSET
97 #  undef _TIMEVAL_DEFINED
98
99 #  define WS_DEFINE_SELECT
100 # endif /* FD_CLR */
101
102 #else
103 # define WS_DEFINE_SELECT
104 # include <sys/types.h>
105 # include <stdlib.h>
106 #endif /* !USE_WS_PREFIX */
107
108 #endif /* __WINE_WINSOCKAPI_STDLIB_H */
109
110 #ifndef __WINESRC__
111 # include <windows.h>
112 #else
113 # include <windef.h>
114 #endif
115
116 #ifndef _WINSOCKAPI_
117 #define _WINSOCKAPI_
118
119 #ifdef USE_WS_PREFIX
120 typedef unsigned char  WS_u_char;
121 typedef unsigned short WS_u_short;
122 typedef unsigned int   WS_u_int;
123 typedef ULONG          WS_u_long;
124 #elif (defined(_MSC_VER) || defined(__MINGW32__) || defined(__WATCOMC__)) && !defined(_BSDTYPES_DEFINED)
125 /* MinGW doesn't define the u_xxx types */
126 typedef unsigned char  u_char;
127 typedef unsigned short u_short;
128 typedef unsigned int   u_int;
129 typedef ULONG          u_long;
130 #define _BSDTYPES_DEFINED
131 #else
132 #define u_long ULONG  /* make sure we don't use the system u_long */
133 #endif
134
135 #ifdef USE_WS_PREFIX
136 # define WS(x)    WS_##x
137 #else
138 # define WS(x)    x
139 #endif
140
141 #ifdef __cplusplus
142 extern "C" {
143 #endif /* defined(__cplusplus) */
144
145 /*
146  * Address families
147  */
148 #ifndef USE_WS_PREFIX
149 #define AF_UNSPEC                  0
150 #define AF_UNIX                    1
151 #define AF_INET                    2
152 #define AF_IMPLINK                 3
153 #define AF_PUP                     4
154 #define AF_CHAOS                   5
155 #define AF_NS                      6
156 #define AF_IPX                     AF_NS
157 #define AF_ISO                     7
158 #define AF_OSI                     AF_ISO
159 #define AF_ECMA                    8
160 #define AF_DATAKIT                 9
161 #define AF_CCITT                   10
162 #define AF_SNA                     11
163 #define AF_DECnet                  12
164 #define AF_DLI                     13
165 #define AF_LAT                     14
166 #define AF_HYLINK                  15
167 #define AF_APPLETALK               16
168 #define AF_NETBIOS                 17
169 #define AF_VOICEVIEW               18
170 #define AF_FIREFOX                 19
171 #define AF_UNKNOWN1                20
172 #define AF_BAN                     21
173 #define AF_ATM                     22
174 #define AF_INET6                   23
175 #define AF_CLUSTER                 24
176 #define AF_12844                   25
177 #define AF_IRDA                    26
178 #define AF_MAX                     27
179 #define PF_UNSPEC                  AF_UNSPEC
180 #define PF_UNIX                    AF_UNIX
181 #define PF_INET                    AF_INET
182 #define PF_IMPLINK                 AF_IMPLINK
183 #define PF_PUP                     AF_PUP
184 #define PF_CHAOS                   AF_CHAOS
185 #define PF_NS                      AF_NS
186 #define PF_IPX                     AF_IPX
187 #define PF_ISO                     AF_ISO
188 #define PF_OSI                     AF_OSI
189 #define PF_ECMA                    AF_ECMA
190 #define PF_DATAKIT                 AF_DATAKIT
191 #define PF_CCITT                   AF_CCITT
192 #define PF_SNA                     AF_SNA
193 #define PF_DECnet                  AF_DECnet
194 #define PF_DLI                     AF_DLI
195 #define PF_LAT                     AF_LAT
196 #define PF_HYLINK                  AF_HYLINK
197 #define PF_APPLETALK               AF_APPLETALK
198 #define PF_VOICEVIEW               AF_VOICEVIEW
199 #define PF_FIREFOX                 AF_FIREFOX
200 #define PF_UNKNOWN1                AF_UNKNOWN1
201 #define PF_BAN                     AF_BAN
202 #define PF_MAX                     AF_MAX
203 #else /* USE_WS_PREFIX */
204 #define WS_AF_UNSPEC               0
205 #define WS_AF_UNIX                 1
206 #define WS_AF_INET                 2
207 #define WS_AF_IMPLINK              3
208 #define WS_AF_PUP                  4
209 #define WS_AF_CHAOS                5
210 #define WS_AF_NS                   6
211 #define WS_AF_IPX                  WS_AF_NS
212 #define WS_AF_ISO                  7
213 #define WS_AF_OSI                  AF_ISO
214 #define WS_AF_ECMA                 8
215 #define WS_AF_DATAKIT              9
216 #define WS_AF_CCITT                10
217 #define WS_AF_SNA                  11
218 #define WS_AF_DECnet               12
219 #define WS_AF_DLI                  13
220 #define WS_AF_LAT                  14
221 #define WS_AF_HYLINK               15
222 #define WS_AF_APPLETALK            16
223 #define WS_AF_NETBIOS              17
224 #define WS_AF_VOICEVIEW            18
225 #define WS_AF_FIREFOX              19
226 #define WS_AF_UNKNOWN1             20
227 #define WS_AF_BAN                  21
228 #define WS_AF_ATM                  22
229 #define WS_AF_INET6                23
230 #define WS_AF_CLUSTER              24
231 #define WS_AF_12844                25
232 #define WS_AF_IRDA                 26
233 #define WS_AF_MAX                  27
234 #endif /* USE_WS_PREFIX */
235
236 /*
237  * Types
238  */
239 #ifndef USE_WS_PREFIX
240 #define SOCK_STREAM                1
241 #define SOCK_DGRAM                 2
242 #define SOCK_RAW                   3
243 #define SOCK_RDM                   4
244 #define SOCK_SEQPACKET             5
245 #else /* USE_WS_PREFIX */
246 #define WS_SOCK_STREAM             1
247 #define WS_SOCK_DGRAM              2
248 #define WS_SOCK_RAW                3
249 #define WS_SOCK_RDM                4
250 #define WS_SOCK_SEQPACKET          5
251 #endif /* USE_WS_PREFIX */
252
253
254 /*
255  * Protocols
256  */
257 #ifndef USE_WS_PREFIX
258 #define IPPROTO_IP                 0
259 #define IPPROTO_ICMP               1
260 #define IPPROTO_IGMP               2
261 #define IPPROTO_GGP                3
262 #define IPPROTO_TCP                6
263 #define IPPROTO_UDP                17
264 #define IPPROTO_IDP                22
265 #define IPPROTO_IPV6               41
266 #define IPPROTO_ND                 77
267 #define IPPROTO_RAW                255
268 #define IPPROTO_MAX                256
269 #else /* USE_WS_PREFIX */
270 #define WS_IPPROTO_IP              0
271 #define WS_IPPROTO_ICMP            1
272 #define WS_IPPROTO_IGMP            2
273 #define WS_IPPROTO_GGP             3
274 #define WS_IPPROTO_TCP             6
275 #define WS_IPPROTO_UDP             17
276 #define WS_IPPROTO_IDP             22
277 #define WS_IPPROTO_IPV6            41
278 #define WS_IPPROTO_ND              77
279 #define WS_IPPROTO_RAW             255
280 #define WS_IPPROTO_MAX             256
281 #endif /* USE_WS_PREFIX */
282
283 typedef struct WS(protoent)
284 {
285     char* p_name;
286     char** p_aliases;
287     short p_proto;
288 } PROTOENT, *PPROTOENT, *LPPROTOENT;
289
290
291
292 /*
293  * Networks
294  */
295 struct WS(netent)
296 {
297     char* n_name;                  /* official name of net */
298     char** n_aliases;              /* alias list */
299     short n_addrtype;              /* net address type */
300     ULONG n_net;                   /* network # */
301 };
302
303
304 /*
305  * Services
306  */
307 #ifndef USE_WS_PREFIX
308 #define IPPORT_ECHO                7
309 #define IPPORT_DISCARD             9
310 #define IPPORT_SYSTAT              11
311 #define IPPORT_DAYTIME             13
312 #define IPPORT_NETSTAT             15
313 #define IPPORT_FTP                 21
314 #define IPPORT_TELNET              23
315 #define IPPORT_SMTP                25
316 #define IPPORT_TIMESERVER          37
317 #define IPPORT_NAMESERVER          42
318 #define IPPORT_WHOIS               43
319 #define IPPORT_MTP                 57
320 #define IPPORT_TFTP                69
321 #define IPPORT_RJE                 77
322 #define IPPORT_FINGER              79
323 #define IPPORT_TTYLINK             87
324 #define IPPORT_SUPDUP              95
325 #define IPPORT_EXECSERVER          512
326 #define IPPORT_LOGINSERVER         513
327 #define IPPORT_CMDSERVER           514
328 #define IPPORT_EFSSERVER           520
329 #define IPPORT_BIFFUDP             512
330 #define IPPORT_WHOSERVER           513
331 #define IPPORT_ROUTESERVER         520
332 #define IPPORT_RESERVED            1024
333 #else /* USE_WS_PREFIX */
334 #define WS_IPPORT_ECHO             7
335 #define WS_IPPORT_DISCARD          9
336 #define WS_IPPORT_SYSTAT           11
337 #define WS_IPPORT_DAYTIME          13
338 #define WS_IPPORT_NETSTAT          15
339 #define WS_IPPORT_FTP              21
340 #define WS_IPPORT_TELNET           23
341 #define WS_IPPORT_SMTP             25
342 #define WS_IPPORT_TIMESERVER       37
343 #define WS_IPPORT_NAMESERVER       42
344 #define WS_IPPORT_WHOIS            43
345 #define WS_IPPORT_MTP              57
346 #define WS_IPPORT_TFTP             69
347 #define WS_IPPORT_RJE              77
348 #define WS_IPPORT_FINGER           79
349 #define WS_IPPORT_TTYLINK          87
350 #define WS_IPPORT_SUPDUP           95
351 #define WS_IPPORT_EXECSERVER       512
352 #define WS_IPPORT_LOGINSERVER      513
353 #define WS_IPPORT_CMDSERVER        514
354 #define WS_IPPORT_EFSSERVER        520
355 #define WS_IPPORT_BIFFUDP          512
356 #define WS_IPPORT_WHOSERVER        513
357 #define WS_IPPORT_ROUTESERVER      520
358 #define WS_IPPORT_RESERVED         1024
359 #endif /* USE_WS_PREFIX */
360
361 typedef struct WS(servent)
362 {
363     char* s_name;                  /* official service name */
364     char** s_aliases;              /* alias list */
365 #ifdef _WIN64
366     char* s_proto;                 /* protocol to use */
367     short s_port;                  /* port # */
368 #else
369     short s_port;                  /* port # */
370     char* s_proto;                 /* protocol to use */
371 #endif
372 } SERVENT, *PSERVENT, *LPSERVENT;
373
374
375
376 /*
377  * Hosts
378  */
379
380 typedef struct WS(hostent)
381 {
382     char* h_name;                  /* official name of host */
383     char** h_aliases;              /* alias list */
384     short h_addrtype;              /* host address type */
385     short h_length;                /* length of address */
386     char** h_addr_list;            /* list of addresses from name server */
387 #define h_addr h_addr_list[0]      /* address, for backward compat */
388 } HOSTENT, *PHOSTENT, *LPHOSTENT;
389
390
391 /*
392  * Sockets
393  */
394
395 typedef UINT_PTR SOCKET;
396
397 /*
398  * This is used instead of -1, since the
399  * SOCKET type is unsigned.
400  */
401 #define INVALID_SOCKET             (SOCKET)(~0)
402 #define SOCKET_ERROR               (-1)
403
404 typedef struct WS(sockaddr)
405 {
406         WS(u_short) sa_family;
407         char        sa_data[14];
408 } SOCKADDR, *PSOCKADDR, *LPSOCKADDR;
409
410 typedef struct WS(linger)
411 {
412     WS(u_short) l_onoff;           /* option on/off */
413     WS(u_short) l_linger;          /* linger time */
414 } LINGER, *PLINGER, *LPLINGER;
415
416 /*
417  * Select
418  */
419
420 #ifdef WS_DEFINE_SELECT
421 /* Define our own version of select and the associated types and macros */
422
423 # ifndef USE_WS_PREFIX
424 #  ifndef FD_SETSIZE
425 #   define FD_SETSIZE              64
426 #  endif
427 # else
428 #  ifndef WS_FD_SETSIZE
429 #   define WS_FD_SETSIZE           64
430 #  endif
431 # endif
432
433 typedef struct WS(fd_set)
434 {
435     WS(u_int) fd_count;            /* how many are SET? */
436 # ifndef USE_WS_PREFIX
437     SOCKET fd_array[FD_SETSIZE];   /* an array of SOCKETs */
438 # else
439     SOCKET fd_array[WS_FD_SETSIZE];/* an array of SOCKETs */
440 # endif
441 } WS(fd_set), FD_SET, *PFD_SET, *LPFD_SET;
442
443 #ifndef _TIMEVAL_DEFINED
444 #define _TIMEVAL_DEFINED
445 typedef struct WS(timeval)
446 {
447     LONG    tv_sec;                /* seconds */
448     LONG    tv_usec;               /* and microseconds */
449 } TIMEVAL, *PTIMEVAL, *LPTIMEVAL;
450 #endif
451
452 #define __WS_FD_CLR(fd, set, cast) do { \
453     unsigned int __i; \
454     for (__i = 0; __i < ((cast*)(set))->fd_count ; __i++) \
455     { \
456         if (((cast*)(set))->fd_array[__i] == fd) \
457         { \
458             while (__i < ((cast*)(set))->fd_count-1) \
459             { \
460                 ((cast*)(set))->fd_array[__i] = \
461                     ((cast*)(set))->fd_array[__i+1]; \
462                 __i++; \
463             } \
464             ((cast*)(set))->fd_count--; \
465             break; \
466         } \
467     } \
468 } while(0)
469 #define __WS_FD_SET1(fd, set, cast) do { \
470     if (((cast*)(set))->fd_count < FD_SETSIZE) \
471         ((cast*)(set))->fd_array[((cast*)(set))->fd_count++]=(fd); \
472 } while(0)
473 /* This version checks if the filedesc is already in the list, and appends it
474  * only if it's not the case
475  */
476 #define __WS_FD_SET2(fd, set, cast) do { \
477     unsigned int __i; \
478     for (__i = 0; __i < ((cast*)(set))->fd_count ; __i++) \
479     { \
480         if (((cast*)(set))->fd_array[__i]==(fd)) \
481             break; \
482     } \
483     if (__i == ((cast*)(set))->fd_count && ((cast*)(set))->fd_count < FD_SETSIZE) \
484     { \
485         ((cast*)(set))->fd_count++; \
486         ((cast*)(set))->fd_array[__i]=(fd);\
487     } \
488 } while(0)
489
490 #ifndef __WINE_WINSOCK2__
491 #define __WS_FD_SET(fd, set, cast) __WS_FD_SET1((fd),(set), cast)
492 #else
493 #define __WS_FD_SET(fd, set, cast) __WS_FD_SET2((fd),(set), cast)
494 #endif
495
496 #ifndef USE_WS_PREFIX
497 #define FD_CLR(fd, set)      __WS_FD_CLR((fd),(set), fd_set)
498 #define FD_SET(fd, set)      __WS_FD_SET((fd),(set), fd_set)
499 #define FD_ZERO(set)         (((fd_set*)(set))->fd_count=0)
500 #define FD_ISSET(fd, set)    __WSAFDIsSet((SOCKET)(fd), (fd_set*)(set))
501 #else
502 #define WS_FD_CLR(fd, set)   __WS_FD_CLR((fd),(set), WS_fd_set)
503 #define WS_FD_SET(fd, set)   __WS_FD_SET((fd),(set), WS_fd_set)
504 #define WS_FD_ZERO(set)      (((WS_fd_set*)(set))->fd_count=0)
505 #define WS_FD_ISSET(fd, set) __WSAFDIsSet((SOCKET)(fd), (WS_fd_set*)(set))
506 #endif
507
508 int WINAPI __WSAFDIsSet(SOCKET,WS(fd_set)*);
509
510 #endif /* WS_DEFINE_SELECT */
511
512 /* we have to define hton/ntoh as macros to avoid conflicts with Unix headers */
513 #ifndef USE_WS_PREFIX
514
515 #undef htonl
516 #undef htons
517 #undef ntohl
518 #undef ntohs
519
520 #ifdef WORDS_BIGENDIAN
521
522 #define htonl(l) ((ULONG)(l))
523 #define htons(s) ((u_short)(s))
524 #define ntohl(l) ((ULONG)(l))
525 #define ntohs(s) ((u_short)(s))
526
527 #else  /* WORDS_BIGENDIAN */
528
529 static inline u_short __wine_ushort_swap(u_short s)
530 {
531     return (s >> 8) | (s << 8);
532 }
533 static inline ULONG __wine_ulong_swap(ULONG l)
534 {
535     return ((ULONG)__wine_ushort_swap((u_short)l) << 16) | __wine_ushort_swap((u_short)(l >> 16));
536 }
537 #define htonl(l) __wine_ulong_swap(l)
538 #define htons(s) __wine_ushort_swap(s)
539 #define ntohl(l) __wine_ulong_swap(l)
540 #define ntohs(s) __wine_ushort_swap(s)
541
542 #endif  /* WORDS_BIGENDIAN */
543
544 #endif  /* USE_WS_PREFIX */
545
546 /*
547  * Internet address (old style... should be updated)
548  */
549
550 #ifndef USE_WS_PREFIX
551 #define IN_CLASSA_NSHIFT           24
552 #define IN_CLASSA_MAX              128
553 #define IN_CLASSA_NET              0xff000000
554 #define IN_CLASSA_HOST             0x00ffffff
555 #define IN_CLASSA(i)               (((LONG)(i) & 0x80000000) == 0)
556 #define IN_CLASSB_NSHIFT           16
557 #define IN_CLASSB_MAX              65536
558 #define IN_CLASSB_NET              0xffff0000
559 #define IN_CLASSB_HOST             0x0000ffff
560 #define IN_CLASSB(i)               (((LONG)(i) & 0xc0000000) == 0x80000000)
561 #define IN_CLASSC_NSHIFT           8
562 #define IN_CLASSC_NET              0xffffff00
563 #define IN_CLASSC_HOST             0x000000ff
564 #define IN_CLASSC(i)               (((LONG)(i) & 0xe0000000) == 0xc0000000)
565 #else
566 #define WS_IN_CLASSA_NSHIFT        24
567 #define WS_IN_CLASSA_MAX           128
568 #define WS_IN_CLASSA_NET           0xff000000
569 #define WS_IN_CLASSA_HOST          0x00ffffff
570 #define WS_IN_CLASSA(i)            (((LONG)(i) & 0x80000000) == 0)
571 #define WS_IN_CLASSB_NSHIFT        16
572 #define WS_IN_CLASSB_MAX           65536
573 #define WS_IN_CLASSB_NET           0xffff0000
574 #define WS_IN_CLASSB_HOST          0x0000ffff
575 #define WS_IN_CLASSB(i)            (((LONG)(i) & 0xc0000000) == 0x80000000)
576 #define WS_IN_CLASSC_NSHIFT        8
577 #define WS_IN_CLASSC_NET           0xffffff00
578 #define WS_IN_CLASSC_HOST          0x000000ff
579 #define WS_IN_CLASSC(i)            (((LONG)(i) & 0xe0000000) == 0xc0000000)
580 #endif /* USE_WS_PREFIX */
581
582 #ifndef USE_WS_PREFIX
583 #define INADDR_ANY                 ((ULONG)0x00000000)
584 #define INADDR_LOOPBACK            0x7f000001
585 #define INADDR_BROADCAST           ((ULONG)0xffffffff)
586 #define INADDR_NONE                0xffffffff
587 #else
588 #define WS_INADDR_ANY              ((ULONG)0x00000000)
589 #define WS_INADDR_LOOPBACK         0x7f000001
590 #define WS_INADDR_BROADCAST        ((ULONG)0xffffffff)
591 #define WS_INADDR_NONE             0xffffffff
592 #endif /* USE_WS_PREFIX */
593
594 typedef struct WS(in_addr)
595 {
596     union {
597         struct {
598             WS(u_char) s_b1,s_b2,s_b3,s_b4;
599         } S_un_b;
600         struct {
601             WS(u_short) s_w1,s_w2;
602         } S_un_w;
603         ULONG S_addr;
604     } S_un;
605 #ifndef USE_WS_PREFIX
606 #define s_addr  S_un.S_addr
607 #define s_host  S_un.S_un_b.s_b2
608 #define s_net   S_un.S_un_b.s_b1
609 #define s_imp   S_un.S_un_w.s_w2
610 #define s_impno S_un.S_un_b.s_b4
611 #define s_lh    S_un.S_un_b.s_b3
612 #else
613 #define WS_s_addr  S_un.S_addr
614 #define WS_s_host  S_un.S_un_b.s_b2
615 #define WS_s_net   S_un.S_un_b.s_b1
616 #define WS_s_imp   S_un.S_un_w.s_w2
617 #define WS_s_impno S_un.S_un_b.s_b4
618 #define WS_s_lh    S_un.S_un_b.s_b3
619 #endif /* USE_WS_PREFIX */
620 } IN_ADDR, *PIN_ADDR, *LPIN_ADDR;
621
622 typedef struct WS(sockaddr_in)
623 {
624     short              sin_family;
625     WS(u_short)        sin_port;
626     struct WS(in_addr) sin_addr;
627     char               sin_zero[8];
628 } SOCKADDR_IN, *PSOCKADDR_IN, *LPSOCKADDR_IN;
629
630 /*
631  * Multicast group information
632  */
633
634 #if !defined(__WINE_WINSOCK2__)
635 struct WS(ip_mreq)
636 {
637     struct WS(in_addr) imr_multiaddr;
638     struct WS(in_addr) imr_interface;
639 };
640 #endif
641
642 /*
643  * WSAStartup
644  */
645 #define WSADESCRIPTION_LEN      256
646 #define WSASYS_STATUS_LEN       128
647
648 typedef struct WS(WSAData)
649 {
650     WORD                    wVersion;
651     WORD                    wHighVersion;
652 #ifdef _WIN64
653     WORD                    iMaxSockets;
654     WORD                    iMaxUdpDg;
655     char                   *lpVendorInfo;
656     char                    szDescription[WSADESCRIPTION_LEN+1];
657     char                    szSystemStatus[WSASYS_STATUS_LEN+1];
658 #else
659     char                    szDescription[WSADESCRIPTION_LEN+1];
660     char                    szSystemStatus[WSASYS_STATUS_LEN+1];
661     WORD                    iMaxSockets;
662     WORD                    iMaxUdpDg;
663     char                   *lpVendorInfo;
664 #endif
665 } WSADATA, *LPWSADATA;
666
667
668
669 /*
670  * {get,set}sockopt
671  */
672 #ifndef USE_WS_PREFIX
673 #define SOL_SOCKET                 0xffff
674 #define SO_DEBUG                   0x0001
675 #define SO_ACCEPTCONN              0x0002
676 #define SO_REUSEADDR               0x0004
677 #define SO_EXCLUSIVEADDRUSE        ((u_int)(~SO_REUSEADDR))
678 #define SO_KEEPALIVE               0x0008
679 #define SO_DONTROUTE               0x0010
680 #define SO_BROADCAST               0x0020
681 #define SO_USELOOPBACK             0x0040
682 #define SO_LINGER                  0x0080
683 #define SO_OOBINLINE               0x0100
684 #define SO_DONTLINGER              ((u_int)(~SO_LINGER))
685 #define SO_SNDBUF                  0x1001
686 #define SO_RCVBUF                  0x1002
687 #define SO_SNDLOWAT                0x1003
688 #define SO_RCVLOWAT                0x1004
689 #define SO_SNDTIMEO                0x1005
690 #define SO_RCVTIMEO                0x1006
691 #define SO_ERROR                   0x1007
692 #define SO_TYPE                    0x1008
693
694
695 #define IOCPARM_MASK               0x7f
696 #define IOC_VOID                   0x20000000
697 #define IOC_OUT                    0x40000000
698 #define IOC_IN                     0x80000000
699 #define IOC_INOUT                  (IOC_IN|IOC_OUT)
700
701 #define _IO(x,y)    (IOC_VOID|((x)<<8)|(y))
702 #define _IOR(x,y,t) (IOC_OUT|(((UINT)sizeof(t)&IOCPARM_MASK)<<16)|((x)<<8)|(y))
703 #define _IOW(x,y,t) (IOC_IN|(((UINT)sizeof(t)&IOCPARM_MASK)<<16)|((x)<<8)|(y))
704
705 #else
706
707 #define WS_SOL_SOCKET              0xffff
708 #define WS_SO_DEBUG                0x0001
709 #define WS_SO_ACCEPTCONN           0x0002
710 #define WS_SO_REUSEADDR            0x0004
711 #define WS_SO_EXCLUSIVEADDRUSE     ((WS_u_int)(~WS_SO_REUSEADDR))
712 #define WS_SO_KEEPALIVE            0x0008
713 #define WS_SO_DONTROUTE            0x0010
714 #define WS_SO_BROADCAST            0x0020
715 #define WS_SO_USELOOPBACK          0x0040
716 #define WS_SO_LINGER               0x0080
717 #define WS_SO_OOBINLINE            0x0100
718 #define WS_SO_DONTLINGER           ((WS_u_int)(~WS_SO_LINGER))
719 #define WS_SO_SNDBUF               0x1001
720 #define WS_SO_RCVBUF               0x1002
721 #define WS_SO_SNDLOWAT             0x1003
722 #define WS_SO_RCVLOWAT             0x1004
723 #define WS_SO_SNDTIMEO             0x1005
724 #define WS_SO_RCVTIMEO             0x1006
725 #define WS_SO_ERROR                0x1007
726 #define WS_SO_TYPE                 0x1008
727
728 #define WS_IOCPARM_MASK            0x7f
729 #define WS_IOC_VOID                0x20000000
730 #define WS_IOC_OUT                 0x40000000
731 #define WS_IOC_IN                  0x80000000
732 #define WS_IOC_INOUT               (WS_IOC_IN|WS_IOC_OUT)
733
734 #define WS__IO(x,y)    (WS_IOC_VOID|((x)<<8)|(y))
735 #define WS__IOR(x,y,t) (WS_IOC_OUT|(((LONG)sizeof(t)&WS_IOCPARM_MASK)<<16)|((x)<<8)|(y))
736 #define WS__IOW(x,y,t) (WS_IOC_IN|(((LONG)sizeof(t)&WS_IOCPARM_MASK)<<16)|((x)<<8)|(y))
737
738 #endif
739
740 /* IPPROTO_TCP options */
741 #ifndef USE_WS_PREFIX
742 #define TCP_NODELAY                1
743 #else
744 #define WS_TCP_NODELAY             1
745 #endif
746
747 /* IPPROTO_IP options */
748 #ifndef __WINE_WINSOCK2__    /* WinSock2 has different values for the IP_ constants */
749 # ifndef USE_WS_PREFIX
750 #  define IP_OPTIONS             1
751 #  define IP_MULTICAST_IF        2
752 #  define IP_MULTICAST_TTL       3
753 #  define IP_MULTICAST_LOOP      4
754 #  define IP_ADD_MEMBERSHIP      5
755 #  define IP_DROP_MEMBERSHIP     6
756 #  define IP_TTL                 7
757 #  define IP_TOS                 8
758 #  define IP_DONTFRAGMENT        9
759 # else
760 #  define WS_IP_OPTIONS          1
761 #  define WS_IP_MULTICAST_IF     2
762 #  define WS_IP_MULTICAST_TTL    3
763 #  define WS_IP_MULTICAST_LOOP   4
764 #  define WS_IP_ADD_MEMBERSHIP   5
765 #  define WS_IP_DROP_MEMBERSHIP  6
766 #  define WS_IP_TTL              7
767 #  define WS_IP_TOS              8
768 #  define WS_IP_DONTFRAGMENT     9
769 # endif
770 #endif
771
772
773 /*
774  * Socket I/O flags (supported by spec 1.1)
775  */
776 #ifndef USE_WS_PREFIX
777 #define FIONREAD                   _IOR('f', 127, ULONG)
778 #define FIONBIO                    _IOW('f', 126, ULONG)
779 #define FIOASYNC                   _IOW('f', 125, ULONG)
780 #define SIOCSHIWAT                 _IOW('s',  0, ULONG)
781 #define SIOCGHIWAT                 _IOR('s',  1, ULONG)
782 #define SIOCSLOWAT                 _IOW('s',  2, ULONG)
783 #define SIOCGLOWAT                 _IOR('s',  3, ULONG)
784 #define SIOCATMARK                 _IOR('s',  7, ULONG)
785 #else
786 #define WS_FIONREAD                WS__IOR('f', 127, ULONG)
787 #define WS_FIONBIO                 WS__IOW('f', 126, ULONG)
788 #define WS_FIOASYNC                WS__IOW('f', 125, ULONG)
789 #define WS_SIOCSHIWAT              WS__IOW('s',  0, ULONG)
790 #define WS_SIOCGHIWAT              WS__IOR('s',  1, ULONG)
791 #define WS_SIOCSLOWAT              WS__IOW('s',  2, ULONG)
792 #define WS_SIOCGLOWAT              WS__IOR('s',  3, ULONG)
793 #define WS_SIOCATMARK              WS__IOR('s',  7, ULONG)
794 #endif
795
796 /*
797  * Maximum queue length specifiable by listen.
798  */
799 #ifndef USE_WS_PREFIX
800 #define SOMAXCONN                  5
801
802 #define MSG_OOB                    0x0001
803 #define MSG_PEEK                   0x0002
804 #define MSG_DONTROUTE              0x0004
805 #define MSG_WAITALL                0x0008
806 #define MSG_INTERRUPT              0x0010
807 #define MSG_PARTIAL                0x8000
808 #define MSG_MAXIOVLEN              16
809 #else /* USE_WS_PREFIX */
810 #define WS_SOMAXCONN               5
811
812 #define WS_MSG_OOB                 0x0001
813 #define WS_MSG_PEEK                0x0002
814 #define WS_MSG_DONTROUTE           0x0004
815 #define WS_MSG_WAITALL             0x0008
816 #define WS_MSG_INTERRUPT           0x0010
817 #define WS_MSG_PARTIAL             0x8000
818 #define WS_MSG_MAXIOVLEN           16
819 #endif /* USE_WS_PREFIX */
820
821 /*
822  * Define constant based on rfc883, used by gethostbyxxxx() calls.
823  */
824 #ifndef USE_WS_PREFIX
825 #define MAXGETHOSTSTRUCT           1024
826 #else
827 #define MAXGETHOSTSTRUCT           1024
828 #endif
829
830
831 /*
832  * Define flags to be used with the WSAAsyncSelect() call.
833  */
834 #define FD_READ                    0x00000001
835 #define FD_WRITE                   0x00000002
836 #define FD_OOB                     0x00000004
837 #define FD_ACCEPT                  0x00000008
838 #define FD_CONNECT                 0x00000010
839 #define FD_CLOSE                   0x00000020
840
841 /* internal per-socket flags */
842 #ifdef __WINESRC__
843 #define FD_WINE_LISTENING          0x10000000
844 #define FD_WINE_NONBLOCKING        0x20000000
845 #define FD_WINE_CONNECTED          0x40000000
846 #define FD_WINE_RAW                0x80000000
847 #define FD_WINE_INTERNAL           0xFFFF0000
848 #endif
849
850 /*
851  * All Windows Sockets error constants are biased by WSABASEERR from
852  * the "normal". They are also defined in winerror.h.
853  */
854 #define WSABASEERR                 10000
855 /*
856  * Windows Sockets definitions of regular Microsoft C error constants
857  */
858 #define WSAEINTR                   (WSABASEERR+4)
859 #define WSAEBADF                   (WSABASEERR+9)
860 #define WSAEACCES                  (WSABASEERR+13)
861 #define WSAEFAULT                  (WSABASEERR+14)
862 #define WSAEINVAL                  (WSABASEERR+22)
863 #define WSAEMFILE                  (WSABASEERR+24)
864
865 /*
866  * Windows Sockets definitions of regular Berkeley error constants
867  */
868 #define WSAEWOULDBLOCK             (WSABASEERR+35)
869 #define WSAEINPROGRESS             (WSABASEERR+36)
870 #define WSAEALREADY                (WSABASEERR+37)
871 #define WSAENOTSOCK                (WSABASEERR+38)
872 #define WSAEDESTADDRREQ            (WSABASEERR+39)
873 #define WSAEMSGSIZE                (WSABASEERR+40)
874 #define WSAEPROTOTYPE              (WSABASEERR+41)
875 #define WSAENOPROTOOPT             (WSABASEERR+42)
876 #define WSAEPROTONOSUPPORT         (WSABASEERR+43)
877 #define WSAESOCKTNOSUPPORT         (WSABASEERR+44)
878 #define WSAEOPNOTSUPP              (WSABASEERR+45)
879 #define WSAEPFNOSUPPORT            (WSABASEERR+46)
880 #define WSAEAFNOSUPPORT            (WSABASEERR+47)
881 #define WSAEADDRINUSE              (WSABASEERR+48)
882 #define WSAEADDRNOTAVAIL           (WSABASEERR+49)
883 #define WSAENETDOWN                (WSABASEERR+50)
884 #define WSAENETUNREACH             (WSABASEERR+51)
885 #define WSAENETRESET               (WSABASEERR+52)
886 #define WSAECONNABORTED            (WSABASEERR+53)
887 #define WSAECONNRESET              (WSABASEERR+54)
888 #define WSAENOBUFS                 (WSABASEERR+55)
889 #define WSAEISCONN                 (WSABASEERR+56)
890 #define WSAENOTCONN                (WSABASEERR+57)
891 #define WSAESHUTDOWN               (WSABASEERR+58)
892 #define WSAETOOMANYREFS            (WSABASEERR+59)
893 #define WSAETIMEDOUT               (WSABASEERR+60)
894 #define WSAECONNREFUSED            (WSABASEERR+61)
895 #define WSAELOOP                   (WSABASEERR+62)
896 #define WSAENAMETOOLONG            (WSABASEERR+63)
897 #define WSAEHOSTDOWN               (WSABASEERR+64)
898 #define WSAEHOSTUNREACH            (WSABASEERR+65)
899 #define WSAENOTEMPTY               (WSABASEERR+66)
900 #define WSAEPROCLIM                (WSABASEERR+67)
901 #define WSAEUSERS                  (WSABASEERR+68)
902 #define WSAEDQUOT                  (WSABASEERR+69)
903 #define WSAESTALE                  (WSABASEERR+70)
904 #define WSAEREMOTE                 (WSABASEERR+71)
905
906 /*
907  * Extended Windows Sockets error constant definitions
908  */
909 #define WSASYSNOTREADY             (WSABASEERR+91)
910 #define WSAVERNOTSUPPORTED         (WSABASEERR+92)
911 #define WSANOTINITIALISED          (WSABASEERR+93)
912 #define WSAEDISCON                 (WSABASEERR+101)
913 #define WSAENOMORE                 (WSABASEERR+102)
914 #define WSAECANCELLED              (WSABASEERR+103)
915 #define WSAEINVALIDPROCTABLE       (WSABASEERR+104)
916 #define WSAEINVALIDPROVIDER        (WSABASEERR+105)
917 #define WSAEPROVIDERFAILEDINIT     (WSABASEERR+106)
918 #define WSASYSCALLFAILURE          (WSABASEERR+107)
919 #define WSASERVICE_NOT_FOUND       (WSABASEERR+108)
920 #define WSATYPE_NOT_FOUND          (WSABASEERR+109)
921 #define WSA_E_NO_MORE              (WSABASEERR+110)
922 #define WSA_E_CANCELLED            (WSABASEERR+111)
923 #define WSAEREFUSED                (WSABASEERR+112)
924
925 /*
926  * Error return codes from gethostbyname() and gethostbyaddr()
927  * (when using the resolver). Note that these errors are
928  * retrieved via WSAGetLastError() and must therefore follow
929  * the rules for avoiding clashes with error numbers from
930  * specific implementations or language run-time systems.
931  * For this reason the codes are based at WSABASEERR+1001.
932  * Note also that [WSA]NO_ADDRESS is defined only for
933  * compatibility purposes.
934  */
935
936 #ifndef USE_WS_PREFIX
937 #define h_errno                    WSAGetLastError()
938 #else
939 #define WS_h_errno                 WSAGetLastError()
940 #endif
941
942 /* Authoritative Answer: Host not found */
943 #define WSAHOST_NOT_FOUND          (WSABASEERR+1001)
944
945 /* Non-Authoritative: Host not found, or SERVERFAIL */
946 #define WSATRY_AGAIN               (WSABASEERR+1002)
947
948 /* Non recoverable errors, FORMERR, REFUSED, NOTIMP */
949 #define WSANO_RECOVERY             (WSABASEERR+1003)
950
951 /* Valid name, no data record of requested type */
952 #define WSANO_DATA                 (WSABASEERR+1004)
953
954 /* no address, look for MX record */
955 #define WSANO_ADDRESS              WSANO_DATA
956
957 #ifndef USE_WS_PREFIX
958 #define HOST_NOT_FOUND             WSAHOST_NOT_FOUND
959 #define TRY_AGAIN                  WSATRY_AGAIN
960 #define NO_RECOVERY                WSANO_RECOVERY
961 #define NO_DATA                    WSANO_DATA
962 #define NO_ADDRESS                 WSANO_ADDRESS
963 #endif /* USE_WS_PREFIX */
964
965
966
967 /*
968  * Windows message parameter composition and decomposition
969  * macros.
970  */
971
972 /*
973  * WSAMAKEASYNCREPLY is intended for use by the Windows Sockets implementation
974  * when constructing the response to a WSAAsyncGetXByY() routine.
975  */
976 #define WSAMAKEASYNCREPLY(buflen,error)     MAKELONG(buflen,error)
977 /*
978  * WSAMAKESELECTREPLY is intended for use by the Windows Sockets implementation
979  * when constructing the response to WSAAsyncSelect().
980  */
981 #define WSAMAKESELECTREPLY(event,error)     MAKELONG(event,error)
982 /*
983  * WSAGETASYNCBUFLEN is intended for use by the Windows Sockets application
984  * to extract the buffer length from the lParam in the response
985  * to a WSAGetXByY().
986  */
987 #define WSAGETASYNCBUFLEN(lParam)           LOWORD(lParam)
988 /*
989  * WSAGETASYNCERROR is intended for use by the Windows Sockets application
990  * to extract the error code from the lParam in the response
991  * to a WSAGetXByY().
992  */
993 #define WSAGETASYNCERROR(lParam)            HIWORD(lParam)
994 /*
995  * WSAGETSELECTEVENT is intended for use by the Windows Sockets application
996  * to extract the event code from the lParam in the response
997  * to a WSAAsyncSelect().
998  */
999 #define WSAGETSELECTEVENT(lParam)           LOWORD(lParam)
1000 /*
1001  * WSAGETSELECTERROR is intended for use by the Windows Sockets application
1002  * to extract the error code from the lParam in the response
1003  * to a WSAAsyncSelect().
1004  */
1005 #define WSAGETSELECTERROR(lParam)           HIWORD(lParam)
1006
1007
1008
1009 /*
1010  * Prototypes
1011  *
1012  * Remember to keep this section in sync with the
1013  * "Winsock Function Typedefs" section in winsock2.h.
1014  */
1015 #if !defined(__WINE_WINSOCK2__) || WS_API_PROTOTYPES
1016 HANDLE WINAPI WSAAsyncGetHostByAddr(HWND,WS(u_int),const char*,int,int,char*,int);
1017 HANDLE WINAPI WSAAsyncGetHostByName(HWND,WS(u_int),const char*,char*,int);
1018 HANDLE WINAPI WSAAsyncGetProtoByName(HWND,WS(u_int),const char*,char*,int);
1019 HANDLE WINAPI WSAAsyncGetProtoByNumber(HWND,WS(u_int),int,char*,int);
1020 HANDLE WINAPI WSAAsyncGetServByName(HWND,WS(u_int),const char*,const char*,char*,int);
1021 HANDLE WINAPI WSAAsyncGetServByPort(HWND,WS(u_int),int,const char*,char*,int);
1022 int WINAPI WSAAsyncSelect(SOCKET,HWND,WS(u_int),LONG);
1023 int WINAPI WSACancelAsyncRequest(HANDLE);
1024 int WINAPI WSACancelBlockingCall(void);
1025 int WINAPI WSACleanup(void);
1026 int WINAPI WSAGetLastError(void);
1027 BOOL WINAPI WSAIsBlocking(void);
1028 FARPROC WINAPI WSASetBlockingHook(FARPROC);
1029 void WINAPI WSASetLastError(int);
1030 int WINAPI WSAStartup(WORD,LPWSADATA);
1031 int WINAPI WSAUnhookBlockingHook(void);
1032
1033 SOCKET WINAPI WS(accept)(SOCKET,struct WS(sockaddr)*,int*);
1034 int WINAPI WS(bind)(SOCKET,const struct WS(sockaddr)*,int);
1035 int WINAPI WS(closesocket)(SOCKET);
1036 int WINAPI WS(connect)(SOCKET,const struct WS(sockaddr)*,int);
1037 struct WS(hostent)* WINAPI WS(gethostbyaddr)(const char*,int,int);
1038 struct WS(hostent)* WINAPI WS(gethostbyname)(const char*);
1039 /* gethostname not defined because of conflicts with unistd.h */
1040 int WINAPI WS(getpeername)(SOCKET,struct WS(sockaddr)*,int*);
1041 struct WS(protoent)* WINAPI WS(getprotobyname)(const char*);
1042 struct WS(protoent)* WINAPI WS(getprotobynumber)(int);
1043 #ifdef WS_DEFINE_SELECT
1044 int WINAPI WS(select)(int,WS(fd_set)*,WS(fd_set)*,WS(fd_set)*,const struct WS(timeval)*);
1045 #endif
1046 struct WS(servent)* WINAPI WS(getservbyname)(const char*,const char*);
1047 struct WS(servent)* WINAPI WS(getservbyport)(int,const char*);
1048 int WINAPI WS(getsockname)(SOCKET,struct WS(sockaddr)*,int*);
1049 int WINAPI WS(getsockopt)(SOCKET,int,int,char*,int*);
1050 ULONG WINAPI WS(inet_addr)(const char*);
1051 char* WINAPI WS(inet_ntoa)(struct WS(in_addr));
1052 int WINAPI WS(ioctlsocket)(SOCKET,LONG,ULONG*);
1053 int WINAPI WS(listen)(SOCKET,int);
1054 int WINAPI WS(recv)(SOCKET,char*,int,int);
1055 int WINAPI WS(recvfrom)(SOCKET,char*,int,int,struct WS(sockaddr)*,int*);
1056 int WINAPI WS(send)(SOCKET,const char*,int,int);
1057 int WINAPI WS(sendto)(SOCKET,const char*,int,int,const struct WS(sockaddr)*,int);
1058 int WINAPI WS(setsockopt)(SOCKET,int,int,const char*,int);
1059 int WINAPI WS(shutdown)(SOCKET,int);
1060 SOCKET WINAPI WS(socket)(int,int,int);
1061
1062 #endif /* !defined(__WINE_WINSOCK2__) || WS_API_PROTOTYPES */
1063
1064 #ifdef __cplusplus
1065 }
1066 #endif
1067
1068 #ifndef __WINE_WINSOCK2__
1069 #undef WS
1070 #undef WS_API_PROTOTYPES
1071 #undef WS_API_TYPEDEFS
1072 #endif
1073
1074 #endif  /* _WINSOCKAPI_ */