xinput1_3: Access controller list in HID code directly.
[wine.git] / include / ws2ipdef.h
blob0938db2db9f92bbe2809b9d8dfa821d81c853018
1 /*
2 * Copyright (C) 2009 Robert Shearman
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #ifndef __WS2IPDEF__
20 #define __WS2IPDEF__
22 #include <in6addr.h>
24 #ifdef USE_WS_PREFIX
25 #define WS(x) WS_##x
26 #else
27 #define WS(x) x
28 #endif
30 typedef struct WS(sockaddr_in6_old)
32 SHORT sin6_family;
33 USHORT sin6_port;
34 ULONG sin6_flowinfo;
35 IN6_ADDR sin6_addr;
36 } SOCKADDR_IN6_OLD,*PSOCKADDR_IN6_OLD, *LPSOCKADDR_IN6_OLD;
38 typedef union sockaddr_gen
40 struct WS(sockaddr) Address;
41 struct WS(sockaddr_in) AddressIn;
42 struct WS(sockaddr_in6_old) AddressIn6;
43 } WS(sockaddr_gen);
45 /* Structure to keep interface specific information */
46 typedef struct _INTERFACE_INFO
48 ULONG iiFlags; /* Interface flags */
49 WS(sockaddr_gen) iiAddress; /* Interface address */
50 WS(sockaddr_gen) iiBroadcastAddress; /* Broadcast address */
51 WS(sockaddr_gen) iiNetmask; /* Network mask */
52 } INTERFACE_INFO, * LPINTERFACE_INFO;
54 /* Possible flags for the iiFlags - bitmask */
55 #ifndef USE_WS_PREFIX
56 #define IFF_UP 0x00000001 /* Interface is up */
57 #define IFF_BROADCAST 0x00000002 /* Broadcast is supported */
58 #define IFF_LOOPBACK 0x00000004 /* this is loopback interface */
59 #define IFF_POINTTOPOINT 0x00000008 /* this is point-to-point interface */
60 #define IFF_MULTICAST 0x00000010 /* multicast is supported */
61 #else
62 #define WS_IFF_UP 0x00000001 /* Interface is up */
63 #define WS_IFF_BROADCAST 0x00000002 /* Broadcast is supported */
64 #define WS_IFF_LOOPBACK 0x00000004 /* this is loopback interface */
65 #define WS_IFF_POINTTOPOINT 0x00000008 /* this is point-to-point interface */
66 #define WS_IFF_MULTICAST 0x00000010 /* multicast is supported */
67 #endif /* USE_WS_PREFIX */
69 #ifndef USE_WS_PREFIX
70 #define IP_OPTIONS 1
71 #define IP_HDRINCL 2
72 #define IP_TOS 3
73 #define IP_TTL 4
74 #define IP_MULTICAST_IF 9
75 #define IP_MULTICAST_TTL 10
76 #define IP_MULTICAST_LOOP 11
77 #define IP_ADD_MEMBERSHIP 12
78 #define IP_DROP_MEMBERSHIP 13
79 #define IP_DONTFRAGMENT 14
80 #define IP_ADD_SOURCE_MEMBERSHIP 15
81 #define IP_DROP_SOURCE_MEMBERSHIP 16
82 #define IP_BLOCK_SOURCE 17
83 #define IP_UNBLOCK_SOURCE 18
84 #define IP_PKTINFO 19
85 #define IP_HOPLIMIT 21
86 #define IP_RECEIVE_BROADCAST 22
87 #define IP_RECVIF 24
88 #define IP_RECVDSTADDR 25
89 #define IP_IFLIST 28
90 #define IP_ADD_IFLIST 29
91 #define IP_DEL_IFLIST 30
92 #define IP_UNICAST_IF 31
93 #define IP_RTHDR 32
94 #define IP_RECVRTHDR 38
95 #else
96 #define WS_IP_OPTIONS 1
97 #define WS_IP_HDRINCL 2
98 #define WS_IP_TOS 3
99 #define WS_IP_TTL 4
100 #define WS_IP_MULTICAST_IF 9
101 #define WS_IP_MULTICAST_TTL 10
102 #define WS_IP_MULTICAST_LOOP 11
103 #define WS_IP_ADD_MEMBERSHIP 12
104 #define WS_IP_DROP_MEMBERSHIP 13
105 #define WS_IP_DONTFRAGMENT 14
106 #define WS_IP_ADD_SOURCE_MEMBERSHIP 15
107 #define WS_IP_DROP_SOURCE_MEMBERSHIP 16
108 #define WS_IP_BLOCK_SOURCE 17
109 #define WS_IP_UNBLOCK_SOURCE 18
110 #define WS_IP_PKTINFO 19
111 #define WS_IP_HOPLIMIT 21
112 #define WS_IP_RECEIVE_BROADCAST 22
113 #define WS_IP_RECVIF 24
114 #define WS_IP_RECVDSTADDR 25
115 #define WS_IP_IFLIST 28
116 #define WS_IP_ADD_IFLIST 29
117 #define WS_IP_DEL_IFLIST 30
118 #define WS_IP_UNICAST_IF 31
119 #define WS_IP_RTHDR 32
120 #define WS_IP_RECVRTHDR 38
121 #endif /* USE_WS_PREFIX */
123 typedef struct WS(sockaddr_in6)
125 SHORT sin6_family;
126 USHORT sin6_port;
127 ULONG sin6_flowinfo;
128 IN6_ADDR sin6_addr;
129 ULONG sin6_scope_id;
130 } SOCKADDR_IN6,*PSOCKADDR_IN6, *LPSOCKADDR_IN6;
132 typedef struct WS(sockaddr_in6_pair)
134 PSOCKADDR_IN6 SourceAddress;
135 PSOCKADDR_IN6 DestinationAddress;
136 } SOCKADDR_IN6_PAIR, *PSOCKADDR_IN6_PAIR;
138 typedef union _SOCKADDR_INET
140 SOCKADDR_IN Ipv4;
141 SOCKADDR_IN6 Ipv6;
142 ADDRESS_FAMILY si_family;
143 } SOCKADDR_INET, *PSOCKADDR_INET;
146 * Multicast group information
149 typedef struct WS(ip_mreq)
151 struct WS(in_addr) imr_multiaddr;
152 struct WS(in_addr) imr_interface;
153 } WS(IP_MREQ), *WS(PIP_MREQ);
155 typedef struct WS(ipv6_mreq)
157 struct WS(in6_addr) ipv6mr_multiaddr;
158 unsigned int ipv6mr_interface;
159 } WS(IPV6_MREQ), *WS(PIPV6_MREQ);
161 typedef struct WS(ip_mreq_source) {
162 struct WS(in_addr) imr_multiaddr;
163 struct WS(in_addr) imr_sourceaddr;
164 struct WS(in_addr) imr_interface;
165 } WS(IP_MREQ_SOURCE), *WS(PIP_MREQ_SOURCE);
167 typedef struct WS(ip_msfilter) {
168 struct WS(in_addr) imsf_multiaddr;
169 struct WS(in_addr) imsf_interface;
170 ULONG imsf_fmode;
171 ULONG imsf_numsrc;
172 struct WS(in_addr) imsf_slist[1];
173 } WS(IP_MSFILTER), *WS(PIP_MSFILTER);
175 typedef struct WS(in_pktinfo) {
176 IN_ADDR ipi_addr;
177 UINT ipi_ifindex;
178 } IN_PKTINFO, *PIN_PKTINFO;
180 typedef struct WS(in6_pktinfo) {
181 IN6_ADDR ipi6_addr;
182 ULONG ipi6_ifindex;
183 } IN6_PKTINFO, *PIN6_PKTINFO;
185 #ifndef USE_WS_PREFIX
186 #define IPV6_OPTIONS 1
187 #define IPV6_HDRINCL 2
188 #define IPV6_UNICAST_HOPS 4
189 #define IPV6_MULTICAST_IF 9
190 #define IPV6_MULTICAST_HOPS 10
191 #define IPV6_MULTICAST_LOOP 11
192 #define IPV6_ADD_MEMBERSHIP 12
193 #define IPV6_JOIN_GROUP IPV6_ADD_MEMBERSHIP
194 #define IPV6_DROP_MEMBERSHIP 13
195 #define IPV6_LEAVE_GROUP IPV6_DROP_MEMBERSHIP
196 #define IPV6_DONTFRAG 14
197 #define IPV6_PKTINFO 19
198 #define IPV6_HOPLIMIT 21
199 #define IPV6_PROTECTION_LEVEL 23
200 #define IPV6_RECVIF 24
201 #define IPV6_RECVDSTADDR 25
202 #define IPV6_CHECKSUM 26
203 #define IPV6_V6ONLY 27
204 #define IPV6_IFLIST 28
205 #define IPV6_ADD_IFLIST 29
206 #define IPV6_DEL_IFLIST 30
207 #define IPV6_UNICAST_IF 31
208 #define IPV6_RTHDR 32
209 #define IPV6_RECVRTHDR 38
210 #else
211 #define WS_IPV6_OPTIONS 1
212 #define WS_IPV6_HDRINCL 2
213 #define WS_IPV6_UNICAST_HOPS 4
214 #define WS_IPV6_MULTICAST_IF 9
215 #define WS_IPV6_MULTICAST_HOPS 10
216 #define WS_IPV6_MULTICAST_LOOP 11
217 #define WS_IPV6_ADD_MEMBERSHIP 12
218 #define WS_IPV6_DROP_MEMBERSHIP 13
219 #define WS_IPV6_LEAVE_GROUP WS_IPV6_DROP_MEMBERSHIP
220 #define WS_IPV6_DONTFRAG 14
221 #define WS_IPV6_PKTINFO 19
222 #define WS_IPV6_HOPLIMIT 21
223 #define WS_IPV6_PROTECTION_LEVEL 23
224 #define WS_IPV6_RECVIF 24
225 #define WS_IPV6_RECVDSTADDR 25
226 #define WS_IPV6_CHECKSUM 26
227 #define WS_IPV6_V6ONLY 27
228 #define WS_IPV6_IFLIST 28
229 #define WS_IPV6_ADD_IFLIST 29
230 #define WS_IPV6_DEL_IFLIST 30
231 #define WS_IPV6_UNICAST_IF 31
232 #define WS_IPV6_RTHDR 32
233 #define WS_IPV6_RECVRTHDR 38
234 #endif /* USE_WS_PREFIX */
236 #ifndef USE_WS_PREFIX
237 #define TCP_OFFLOAD_NO_PREFERENCE 0
238 #define TCP_OFFLOAD_NOT_PREFERRED 1
239 #define TCP_OFFLOAD_PREFERRED 2
240 #else
241 #define WS_TCP_OFFLOAD_NO_PREFERENCE 0
242 #define WS_TCP_OFFLOAD_NOT_PREFERRED 1
243 #define WS_TCP_OFFLOAD_PREFERRED 2
244 #endif /* USE_WS_PREFIX */
246 #ifndef USE_WS_PREFIX
247 /* TCP_NODELAY is defined elsewhere */
248 #define TCP_EXPEDITED_1122 2
249 #define TCP_KEEPALIVE 3
250 #define TCP_MAXSEG 4
251 #define TCP_MAXRT 5
252 #define TCP_STDURG 6
253 #define TCP_NOURG 7
254 #define TCP_ATMARK 8
255 #define TCP_NOSYNRETRIES 9
256 #define TCP_TIMESTAMPS 10
257 #define TCP_OFFLOAD_PREFERENCE 11
258 #define TCP_CONGESTION_ALGORITHM 12
259 #define TCP_DELAY_FIN_ACK 13
260 #else
261 /* WS_TCP_NODELAY is defined elsewhere */
262 #define WS_TCP_EXPEDITED_1122 2
263 #define WS_TCP_KEEPALIVE 3
264 #define WS_TCP_MAXSEG 4
265 #define WS_TCP_MAXRT 5
266 #define WS_TCP_STDURG 6
267 #define WS_TCP_NOURG 7
268 #define WS_TCP_ATMARK 8
269 #define WS_TCP_NOSYNRETRIES 9
270 #define WS_TCP_TIMESTAMPS 10
271 #define WS_TCP_OFFLOAD_PREFERENCE 11
272 #define WS_TCP_CONGESTION_ALGORITHM 12
273 #define WS_TCP_DELAY_FIN_ACK 13
274 #endif /* USE_WS_PREFIX */
276 #ifndef USE_WS_PREFIX
277 #define INET_ADDRSTRLEN 22
278 #define INET6_ADDRSTRLEN 65
279 #define IN6ADDR_ANY_INIT { 0 }
280 #define IN6ADDR_LOOPBACK_INIT { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 }
281 #else
282 #define WS_INET_ADDRSTRLEN 22
283 #define WS_INET6_ADDRSTRLEN 65
284 #define WS_IN6ADDR_ANY_INIT { 0 }
285 #define WS_IN6ADDR_LOOPBACK_INIT { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 }
286 #endif /* USE_WS_PREFIX */
288 #define SS_PORT(ssp) (((PSOCKADDR_IN)(ssp))->sin_port)
290 #ifndef USE_WS_PREFIX
291 #define SIO_IDEAL_SEND_BACKLOG_CHANGE _IO ('t', 122)
292 #define SIO_IDEAL_SEND_BACKLOG_QUERY _IOR('t', 123, ULONG)
293 #else
294 #define WS_SIO_IDEAL_SEND_BACKLOG_CHANGE WS__IO ('t', 122)
295 #define WS_SIO_IDEAL_SEND_BACKLOG_QUERY WS__IOR('t', 123, ULONG)
296 #endif
298 #ifdef __cplusplus
299 extern "C" {
300 #endif
302 static inline BOOLEAN WS(IN6_IS_ADDR_LOOPBACK) ( const IN6_ADDR *a )
304 return ((a->s6_words[0] == 0) &&
305 (a->s6_words[1] == 0) &&
306 (a->s6_words[2] == 0) &&
307 (a->s6_words[3] == 0) &&
308 (a->s6_words[4] == 0) &&
309 (a->s6_words[5] == 0) &&
310 (a->s6_words[6] == 0) &&
311 (a->s6_words[7] == 0x0100));
314 static inline BOOLEAN WS(IN6_IS_ADDR_MULTICAST) ( const IN6_ADDR *a )
316 return (a->s6_bytes[0] == 0xff);
319 static inline BOOLEAN WS(IN6_IS_ADDR_UNSPECIFIED) ( const IN6_ADDR *a )
321 return ((a->s6_words[0] == 0) &&
322 (a->s6_words[1] == 0) &&
323 (a->s6_words[2] == 0) &&
324 (a->s6_words[3] == 0) &&
325 (a->s6_words[4] == 0) &&
326 (a->s6_words[5] == 0) &&
327 (a->s6_words[6] == 0) &&
328 (a->s6_words[7] == 0));
331 static inline BOOLEAN WS(IN6_IS_ADDR_LINKLOCAL) ( const IN6_ADDR *a )
333 return ((a->s6_bytes[0] == 0xfe) && ((a->s6_bytes[1] & 0xc0) == 0x80));
336 static inline BOOLEAN WS(IN6_IS_ADDR_SITELOCAL) ( const IN6_ADDR *a )
338 return ((a->s6_bytes[0] == 0xfe) && ((a->s6_bytes[1] & 0xc0) == 0xc0));
341 #ifdef __cplusplus
343 #endif
345 #endif /* __WS2IPDEF__ */