/usr/share/mingw-w64/include/wspiapi.h is in mingw-w64-common 3.2.0-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 | /**
* This file has no copyright assigned and is placed in the Public Domain.
* This file is part of the mingw-w64 runtime package.
* No warranty is given; refer to the file DISCLAIMER.PD within this package.
*/
#ifndef _WSPIAPI_H_
#define _WSPIAPI_H_
#include <stdio.h>
#include <stdlib.h>
#include <malloc.h>
#include <string.h>
#include <ws2tcpip.h>
#include <_mingw_print_push.h>
#define _WSPIAPI_STRCPY_S(_Dst,_Size,_Src) strcpy((_Dst),(_Src))
#define _WSPIAPI_STRCAT_S(_Dst,_Size,_Src) strcat((_Dst),(_Src))
#define _WSPIAPI_STRNCPY_S(_Dst,_Size,_Src,_Count) strncpy((_Dst),(_Src),(_Count)); (_Dst)[(_Size) - 1] = 0
#define _WSPIAPI_SPRINTF_S_1(_Dst,_Size,_Format,_Arg1) sprintf((_Dst),(_Format),(_Arg1))
#ifndef _WSPIAPI_COUNTOF
#ifndef __cplusplus
#define _WSPIAPI_COUNTOF(_Array) (sizeof(_Array) / sizeof(_Array[0]))
#else
template <typename __CountofType,size_t _N> char (&__wspiapi_countof_helper(__CountofType (&_Array)[_N]))[_N];
#define _WSPIAPI_COUNTOF(_Array) sizeof(__wspiapi_countof_helper(_Array))
#endif
#endif
#define WspiapiMalloc(tSize) calloc(1,(tSize))
#define WspiapiFree(p) free(p)
#define WspiapiSwap(a,b,c) { (c) = (a); (a) = (b); (b) = (c); }
#define getaddrinfo WspiapiGetAddrInfo
#define getnameinfo WspiapiGetNameInfo
#define freeaddrinfo WspiapiFreeAddrInfo
typedef int (WINAPI *WSPIAPI_PGETADDRINFO)(const char *nodename,const char *servname,const struct addrinfo *hints,struct addrinfo **res);
typedef int (WINAPI *WSPIAPI_PGETNAMEINFO)(const struct sockaddr *sa,socklen_t salen,char *host,size_t hostlen,char *serv,size_t servlen,int flags);
typedef void (WINAPI *WSPIAPI_PFREEADDRINFO)(struct addrinfo *ai);
#ifdef __cplusplus
extern "C" {
#endif
typedef struct {
char const *pszName;
FARPROC pfAddress;
} WSPIAPI_FUNCTION;
#define WSPIAPI_FUNCTION_ARRAY { { "getaddrinfo",(FARPROC) WspiapiLegacyGetAddrInfo }, \
{ "getnameinfo",(FARPROC) WspiapiLegacyGetNameInfo }, \
{ "freeaddrinfo",(FARPROC) WspiapiLegacyFreeAddrInfo } }
char *WINAPI WspiapiStrdup (const char *pszString);
WINBOOL WINAPI WspiapiParseV4Address (const char *pszAddress,PDWORD pdwAddress);
struct addrinfo * WINAPI WspiapiNewAddrInfo (int iSocketType,int iProtocol,WORD wPort,DWORD dwAddress);
int WINAPI WspiapiQueryDNS (const char *pszNodeName,int iSocketType,int iProtocol,WORD wPort,char pszAlias[NI_MAXHOST],struct addrinfo **pptResult);
int WINAPI WspiapiLookupNode (const char *pszNodeName,int iSocketType,int iProtocol,WORD wPort,WINBOOL bAI_CANONNAME,struct addrinfo **pptResult);
int WINAPI WspiapiClone (WORD wPort,struct addrinfo *ptResult);
void WINAPI WspiapiLegacyFreeAddrInfo (struct addrinfo *ptHead);
int WINAPI WspiapiLegacyGetAddrInfo(const char *pszNodeName,const char *pszServiceName,const struct addrinfo *ptHints,struct addrinfo **pptResult);
int WINAPI WspiapiLegacyGetNameInfo(const struct sockaddr *ptSocketAddress,socklen_t tSocketLength,char *pszNodeName,size_t tNodeLength,char *pszServiceName,size_t tServiceLength,int iFlags);
FARPROC WINAPI WspiapiLoad(WORD wFunction);
int WINAPI WspiapiGetAddrInfo(const char *nodename,const char *servname,const struct addrinfo *hints,struct addrinfo **res);
int WINAPI WspiapiGetNameInfo (const struct sockaddr *sa,socklen_t salen,char *host,size_t hostlen,char *serv,size_t servlen,int flags);
void WINAPI WspiapiFreeAddrInfo (struct addrinfo *ai);
#ifndef __CRT__NO_INLINE
__CRT_INLINE char * WINAPI
WspiapiStrdup (const char *pszString)
{
char *rstr;
size_t szlen;
if(!pszString)
return NULL;
szlen = strlen(pszString) + 1;
rstr = (char *) WspiapiMalloc (szlen);
if (!rstr)
return NULL;
strcpy (rstr, pszString);
return rstr;
}
__CRT_INLINE WINBOOL WINAPI
WspiapiParseV4Address (const char *pszAddress, PDWORD pdwAddress)
{
DWORD dwAddress = 0;
const char *h = NULL;
int cnt;
for (cnt = 0,h = pszAddress; *h != 0; h++)
if (h[0] == '.')
cnt++;
if (cnt != 3)
return FALSE;
dwAddress = inet_addr (pszAddress);
if (dwAddress == INADDR_NONE)
return FALSE;
*pdwAddress = dwAddress;
return TRUE;
}
__CRT_INLINE struct addrinfo * WINAPI
WspiapiNewAddrInfo (int iSocketType,int iProtocol, WORD wPort,DWORD dwAddress)
{
struct addrinfo *n;
struct sockaddr_in *pa;
if ((n = (struct addrinfo *) WspiapiMalloc (sizeof (struct addrinfo))) == NULL)
return NULL;
if ((pa = (struct sockaddr_in *) WspiapiMalloc (sizeof(struct sockaddr_in))) == NULL)
{
WspiapiFree(n);
return NULL;
}
pa->sin_family = AF_INET;
pa->sin_port = wPort;
pa->sin_addr.s_addr = dwAddress;
n->ai_family = PF_INET;
n->ai_socktype = iSocketType;
n->ai_protocol = iProtocol;
n->ai_addrlen = sizeof (struct sockaddr_in);
n->ai_addr = (struct sockaddr *) pa;
return n;
}
__CRT_INLINE int WINAPI
WspiapiLookupNode (const char *pszNodeName, int iSocketType, int iProtocol, WORD wPort,
WINBOOL bAI_CANONNAME, struct addrinfo **pptResult)
{
int err = 0, cntAlias = 0;
char name[NI_MAXHOST] = "";
char alias[NI_MAXHOST] = "";
char *pname = name, *palias = alias, *tmp = NULL;
strncpy (pname, pszNodeName, NI_MAXHOST - 1);
pname[NI_MAXHOST - 1] = 0;
for (;;)
{
err = WspiapiQueryDNS (pszNodeName, iSocketType, iProtocol, wPort, palias, pptResult);
if (err)
break;
if (*pptResult)
break;
++cntAlias;
if (strlen (palias) == 0 || !strcmp (pname, palias) || cntAlias == 16)
{
err = EAI_FAIL;
break;
}
WspiapiSwap(pname, palias, tmp);
}
if (!err && bAI_CANONNAME)
{
(*pptResult)->ai_canonname = WspiapiStrdup (palias);
if (!(*pptResult)->ai_canonname)
err = EAI_MEMORY;
}
return err;
}
__CRT_INLINE int WINAPI
WspiapiClone (WORD wPort,struct addrinfo *ptResult)
{
struct addrinfo *p = NULL;
struct addrinfo *n = NULL;
for (p = ptResult; p != NULL;)
{
n = WspiapiNewAddrInfo (SOCK_DGRAM, p->ai_protocol, wPort,
((struct sockaddr_in *) p->ai_addr)->sin_addr.s_addr);
if (!n)
break;
n->ai_next = p->ai_next;
p->ai_next = n;
p = n->ai_next;
}
if (p != NULL)
return EAI_MEMORY;
return 0;
}
__CRT_INLINE void WINAPI
WspiapiLegacyFreeAddrInfo (struct addrinfo *ptHead)
{
struct addrinfo *p;
for (p = ptHead; p != NULL; p = ptHead)
{
if (p->ai_canonname)
WspiapiFree (p->ai_canonname);
if (p->ai_addr)
WspiapiFree (p->ai_addr);
ptHead = p->ai_next;
WspiapiFree (p);
}
}
#endif /* !__CRT__NO_INLINE */
#ifdef __cplusplus
}
#endif
#include <_mingw_print_pop.h>
#endif
|