2 * Copyright (C) 2001 Francois Gouget
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
32 /* for addrinfo calls */
33 typedef struct WS(addrinfo
)
41 struct WS(sockaddr
)* ai_addr
;
42 struct WS(addrinfo
)* ai_next
;
43 } ADDRINFOA
, *PADDRINFOA
;
45 typedef struct WS(addrinfoW
)
53 struct WS(sockaddr
)* ai_addr
;
54 struct WS(addrinfoW
)* ai_next
;
55 } ADDRINFOW
, *PADDRINFOW
;
57 typedef int WS(socklen_t
);
59 typedef ADDRINFOA ADDRINFO
, *LPADDRINFO
;
61 /* Possible Windows flags for getaddrinfo() */
63 # define AI_PASSIVE 0x00000001
64 # define AI_CANONNAME 0x00000002
65 # define AI_NUMERICHOST 0x00000004
66 # define AI_NUMERICSERV 0x00000008
67 # define AI_ADDRCONFIG 0x00000400
68 # define AI_V4MAPPED 0x00000800
69 # define AI_NON_AUTHORITATIVE 0x00004000
70 # define AI_SECURE 0x00008000
71 # define AI_RETURN_PREFERRED_NAMES 0x00010000
72 /* getaddrinfo error codes */
73 # define EAI_AGAIN WSATRY_AGAIN
74 # define EAI_BADFLAGS WSAEINVAL
75 # define EAI_FAIL WSANO_RECOVERY
76 # define EAI_FAMILY WSAEAFNOSUPPORT
77 # define EAI_MEMORY WSA_NOT_ENOUGH_MEMORY
78 # define EAI_NODATA EAI_NONAME
79 # define EAI_NONAME WSAHOST_NOT_FOUND
80 # define EAI_SERVICE WSATYPE_NOT_FOUND
81 # define EAI_SOCKTYPE WSAESOCKTNOSUPPORT
83 # define WS_AI_PASSIVE 0x00000001
84 # define WS_AI_CANONNAME 0x00000002
85 # define WS_AI_NUMERICHOST 0x00000004
86 # define WS_AI_NUMERICSERV 0x00000008
87 # define WS_AI_ADDRCONFIG 0x00000400
88 # define WS_AI_V4MAPPED 0x00000800
89 # define WS_AI_NON_AUTHORITATIVE 0x00004000
90 # define WS_AI_SECURE 0x00008000
91 # define WS_AI_RETURN_PREFERRED_NAMES 0x00010000
92 /* getaddrinfo error codes */
93 # define WS_EAI_AGAIN WSATRY_AGAIN
94 # define WS_EAI_BADFLAGS WSAEINVAL
95 # define WS_EAI_FAIL WSANO_RECOVERY
96 # define WS_EAI_FAMILY WSAEAFNOSUPPORT
97 # define WS_EAI_MEMORY WSA_NOT_ENOUGH_MEMORY
98 # define WS_EAI_NODATA WS_EAI_NONAME
99 # define WS_EAI_NONAME WSAHOST_NOT_FOUND
100 # define WS_EAI_SERVICE WSATYPE_NOT_FOUND
101 # define WS_EAI_SOCKTYPE WSAESOCKTNOSUPPORT
104 #ifndef USE_WS_PREFIX
105 # define NI_MAXHOST 1025
106 # define NI_MAXSERV 32
108 # define WS_NI_MAXHOST 1025
109 # define WS_NI_MAXSERV 32
112 /* Possible Windows flags for getnameinfo() */
113 #ifndef USE_WS_PREFIX
114 # define NI_NOFQDN 0x01
115 # define NI_NUMERICHOST 0x02
116 # define NI_NAMEREQD 0x04
117 # define NI_NUMERICSERV 0x08
118 # define NI_DGRAM 0x10
120 # define WS_NI_NOFQDN 0x01
121 # define WS_NI_NUMERICHOST 0x02
122 # define WS_NI_NAMEREQD 0x04
123 # define WS_NI_NUMERICSERV 0x08
124 # define WS_NI_DGRAM 0x10
132 #define GAI_STRERROR_BUFFER_SIZE 1024
134 static inline char *gai_strerrorA(int errcode
)
136 static char buffer
[GAI_STRERROR_BUFFER_SIZE
+ 1];
138 /* FIXME: should format message from system, ignoring inserts in neutral
145 static inline WCHAR
*gai_strerrorW(int errcode
)
147 static WCHAR buffer
[GAI_STRERROR_BUFFER_SIZE
+ 1];
149 /* FIXME: should format message from system, ignoring inserts in neutral
157 # define WS_gai_strerror WINELIB_NAME_AW(gai_strerror)
158 #elif defined(WINE_NO_UNICODE_MACROS)
159 # define gai_strerror gai_strerrorA
161 # define gai_strerror WINELIB_NAME_AW(gai_strerror)
164 void WINAPI
WS(freeaddrinfo
)(LPADDRINFO
);
165 #define FreeAddrInfoA WS(freeaddrinfo)
166 void WINAPI
FreeAddrInfoW(PADDRINFOW
);
167 #define FreeAddrInfo WINELIB_NAME_AW(FreeAddrInfo)
168 int WINAPI
WS(getaddrinfo
)(const char*,const char*,const struct WS(addrinfo
)*,struct WS(addrinfo
)**);
169 #define GetAddrInfoA WS(getaddrinfo)
170 int WINAPI
GetAddrInfoW(PCWSTR
,PCWSTR
,const ADDRINFOW
*,PADDRINFOW
*);
171 #define GetAddrInfo WINELIB_NAME_AW(GetAddrInfo)
172 int WINAPI
WS(getnameinfo
)(const SOCKADDR
*,WS(socklen_t
),PCHAR
,DWORD
,PCHAR
,DWORD
,INT
);
173 #define GetNameInfoA WS(getnameinfo)
174 INT WINAPI
GetNameInfoW(const SOCKADDR
*,WS(socklen_t
),PWCHAR
,DWORD
,PWCHAR
,DWORD
,INT
);
175 #define GetNameInfo WINELIB_NAME_AW(GetNameInfo)
176 PCSTR WINAPI
WS(inet_ntop
)(INT
,PVOID
,PSTR
,SIZE_T
);
177 #define InetNtopA WS(inet_ntop)
178 PCWSTR WINAPI
InetNtopW(INT
,PVOID
,PWSTR
,SIZE_T
);
179 #define InetNtop WINELIB_NAME_AW(InetNtop)
180 int WINAPI
WS(inet_pton
)(INT
,PCSTR
,PVOID
);
181 #define InetPtonA WS(inet_pton)
182 int WINAPI
InetPtonW(INT
,PCWSTR
,PVOID
);
183 #define InetPton WINELIB_NAME_AW(InetPton)
186 * Ws2tcpip Function Typedefs
188 * Remember to keep this section in sync with the
191 #if INCL_WINSOCK_API_TYPEDEFS
193 typedef void (WINAPI
*LPFN_FREEADDRINFO
)(LPADDRINFO
);
194 #define LPFN_FREEADDRINFOA LPFN_FREEADDRINFO
195 typedef void (WINAPI
*LPFN_FREEADDRINFOW
)(PADDRINFOW
);
196 #define LPFN_FREEADDRINFOT WINELIB_NAME_AW(LPFN_FREEADDRINFO)
197 typedef int (WINAPI
*LPFN_GETADDRINFO
)(const char*,const char*,const struct WS(addrinfo
)*,struct WS(addrinfo
)**);
198 #define LPFN_GETADDRINFOA LPFN_GETADDRINFO
199 typedef int (WINAPI
*LPFN_GETADDRINFOW
)(PCWSTR
,PCWSTR
,const ADDRINFOW
*,PADDRINFOW
*);
200 #define LPFN_GETADDRINFOT WINELIB_NAME_AW(LPFN_GETADDRINFO)
201 typedef int (WINAPI
*LPFN_GETNAMEINFO
)(const struct sockaddr
*,socklen_t
,char*,DWORD
,char*,DWORD
,int);
202 #define LPFN_GETNAMEINFOA LPFN_GETNAMEINFO
203 typedef int (WINAPI
*LPFN_GETNAMEINFOW
)(const SOCKADDR
*,socklen_t
,PWCHAR
,DWORD
,PWCHAR
,DWORD
,INT
);
204 #define LPFN_GETNAMEINFOT WINELIB_NAME_AW(LPFN_GETNAMEINFO)
212 #endif /* __WS2TCPIP__ */