38 #elif HAVE_SYS_SELECT_H
39 #include <sys/select.h>
50 unsigned int add1 = 0, add2 = 0, add3 = 0, add4 = 0;
52 if (sscanf(str,
"%d.%d.%d.%d", &add1, &add2, &add3, &add4) != 4)
55 if (!add1 || (add1 | add2 | add3 | add4) > 255)
58 add->s_addr = htonl((add1 << 24) + (add2 << 16) + (add3 << 8) + add4);
65 return inet_aton(str, add);
73 struct hostent *h = NULL;
75 struct sockaddr_in *sin;
78 int (WSAAPI *win_getaddrinfo)(
const char *node,
const char *service,
81 HMODULE ws2mod = GetModuleHandle(
"ws2_32.dll");
84 return win_getaddrinfo(node, service, hints, res);
91 sin->sin_family = AF_INET;
99 h = gethostbyname(node);
104 memcpy(&sin->sin_addr, h->h_addr_list[0],
sizeof(
struct in_addr));
108 sin->sin_addr.s_addr = INADDR_ANY;
116 sin->sin_port = htons(atoi(service));
139 ai->
ai_addr = (
struct sockaddr *)sin;
152 HMODULE ws2mod = GetModuleHandle(
"ws2_32.dll");
155 if (win_freeaddrinfo) {
156 win_freeaddrinfo(res);
167 char *host,
int hostlen,
168 char *serv,
int servlen,
int flags)
170 const struct sockaddr_in *sin = (
const struct sockaddr_in *)sa;
173 int (WSAAPI *win_getnameinfo)(
const struct sockaddr *sa, socklen_t salen,
174 char *host,
DWORD hostlen,
176 HMODULE ws2mod = GetModuleHandle(
"ws2_32.dll");
179 return win_getnameinfo(sa, salen, host, hostlen, serv, servlen, flags);
182 if (sa->sa_family != AF_INET)
187 if (host && hostlen > 0) {
188 struct hostent *ent = NULL;
191 ent = gethostbyaddr((
const char *)&sin->sin_addr,
192 sizeof(sin->sin_addr), AF_INET);
195 snprintf(host, hostlen,
"%s", ent->h_name);
199 a = ntohl(sin->sin_addr.s_addr);
200 snprintf(host, hostlen,
"%d.%d.%d.%d",
201 ((a >> 24) & 0xff), ((a >> 16) & 0xff),
202 ((a >> 8) & 0xff), (a & 0xff));
206 if (serv && servlen > 0) {
207 struct servent *ent = NULL;
208 #if HAVE_GETSERVBYPORT
210 ent = getservbyport(sin->sin_port, flags &
NI_DGRAM ?
"udp" :
"tcp");
214 snprintf(serv, servlen,
"%s", ent->s_name);
216 snprintf(serv, servlen,
"%d", ntohs(sin->sin_port));
223 #if !HAVE_GETADDRINFO || HAVE_WINSOCK2_H
228 return "Temporary failure in name resolution";
230 return "Invalid flags for ai_flags";
232 return "A non-recoverable error occurred";
234 return "The address family was not recognized or the address "
235 "length was invalid for the specified family";
237 return "Memory allocation failure";
238 #if EAI_NODATA != EAI_NONAME
240 return "No address associated with hostname";
243 return "The name does not resolve for the supplied parameters";
245 return "servname not supported for ai_socktype";
247 return "ai_socktype not supported";
250 return "Unknown error";
257 u_long param = enable;
258 return ioctlsocket(socket, FIONBIO, ¶m);
261 return fcntl(socket, F_SETFL, fcntl(socket, F_GETFL) | O_NONBLOCK);
263 return fcntl(socket, F_SETFL, fcntl(socket, F_GETFL) & ~O_NONBLOCK);
268 int ff_poll(
struct pollfd *fds, nfds_t numfds,
int timeout)
272 fd_set exception_set;
278 if (numfds >= FD_SETSIZE) {
286 FD_ZERO(&exception_set);
289 for (i = 0; i < numfds; i++) {
293 if (fds[i].fd >= FD_SETSIZE) {
299 if (fds[i].events & POLLIN)
300 FD_SET(fds[i].fd, &read_set);
301 if (fds[i].events & POLLOUT)
302 FD_SET(fds[i].fd, &write_set);
303 if (fds[i].events & POLLERR)
304 FD_SET(fds[i].fd, &exception_set);
315 rc = select(n, &read_set, &write_set, &exception_set, NULL);
318 tv.tv_sec = timeout / 1000;
319 tv.tv_usec = 1000 * (timeout % 1000);
320 rc = select(n, &read_set, &write_set, &exception_set, &tv);
326 for (i = 0; i < numfds; i++) {
329 if (FD_ISSET(fds[i].fd, &read_set))
330 fds[i].revents |= POLLIN;
331 if (FD_ISSET(fds[i].fd, &write_set))
332 fds[i].revents |= POLLOUT;
333 if (FD_ISSET(fds[i].fd, &exception_set))
334 fds[i].revents |= POLLERR;