blob: 8beb9b56a0912e29be2eec2d2349f178298dd0a8 (
plain) (
tree)
blob is binary.
rk-branding&id=599b07497b3130e3bb426d22e568ea7bb007b5c6'>tree)
|
|
/* include stuff for internet */
#ifndef WIN32
#ifdef WANTSOCKET
#include <sys/types.h>
#include <sys/socket.h>
#endif
#ifdef WANTARPA
#include <netinet/in.h>
#include <arpa/inet.h>
#endif
#ifdef WANTDNS
#include <netdb.h>
#endif
#define closesocket close
#define set_blocking(sok) fcntl(sok, F_SETFL, 0)
#define set_nonblocking(sok) fcntl(sok, F_SETFL, O_NONBLOCK)
#define would_block() (errno == EAGAIN || errno == EWOULDBLOCK)
#define sock_error() (errno)
#else
#include "../../config-win32.h"
#ifdef USE_IPV6
#include <winsock2.h>
#include <ws2tcpip.h>
#else
#include <winsock2.h>
#endif
#define set_blocking(sok) { \
unsigned long zero = 0; \
ioctlsocket (sok, FIONBIO, &zero); \
}
#define set_nonblocking(sok) { \
unsigned long one = 1; \
ioctlsocket (sok, FIONBIO, &one); \
}
#define would_block() (WSAGetLastError() == WSAEWOULDBLOCK)
#define sock_error WSAGetLastError
#endif
|