source: sock.h @ 8e419cb

Last change on this file since 8e419cb was 8e419cb, checked in by Jelmer Vernooij <jelmer@…>, at 2006-01-10T21:35:08Z

Merge Wilmer

  • Property mode set to 100644
File size: 1.1 KB
Line 
1#include <errno.h>
2#include <fcntl.h>
3
4/* To cut down on the ifdef stuff a little bit in other places */
5#ifdef IPV6
6#define AF_INETx AF_INET6
7#else
8#define AF_INETx AF_INET
9#endif
10
11#ifndef _WIN32
12#include <unistd.h>
13#include <sys/socket.h>
14#include <netinet/in.h>
15#include <arpa/inet.h>
16#include <netdb.h>
17#define sock_make_nonblocking(fd) fcntl(fd, F_SETFL, O_NONBLOCK)
18#define sock_make_blocking(fd) fcntl(fd, F_SETFL, 0)
19#define sockerr_again() (errno == EINPROGRESS || errno == EINTR)
20#define closesocket(a) close(a)
21#else
22# include <winsock2.h>
23# if !defined(BITLBEE_CORE) && defined(_MSC_VER)
24#   pragma comment(lib,"bitlbee.lib")
25# endif
26# include <io.h>
27# define read(a,b,c) recv(a,b,c,0)
28# define write(a,b,c) send(a,b,c,0)
29# define sock_make_nonblocking(fd) { int non_block = 1; ioctlsocket(fd, FIONBIO, &non_block); }
30# define sock_make_blocking(fd) { int non_block = 0; ioctlsocket(fd, FIONBIO, &non_block); }
31# define sockerr_again() (WSAGetLastError() == WSAEINTR || WSAGetLastError() == WSAEINPROGRESS || WSAGetLastError() == WSAEWOULDBLOCK)
32# define ETIMEDOUT WSAETIMEDOUT
33# define sleep(a) Sleep(a*1000)
34#endif
Note: See TracBrowser for help on using the repository browser.