source: sock.h @ 763a3ab

Last change on this file since 763a3ab was 136c2bb, checked in by Wilmer van der Gaast <wilmer@…>, at 2010-08-14T10:57:17Z

Fix the libevent-specific compiler warning about closesocket().

  • Property mode set to 100644
File size: 1003 bytes
Line 
1#include <errno.h>
2#include <fcntl.h>
3
4#ifndef _WIN32
5#include <unistd.h>
6#include <sys/socket.h>
7#include <netinet/in.h>
8#include <arpa/inet.h>
9#include <netdb.h>
10#define sock_make_nonblocking(fd) fcntl(fd, F_SETFL, O_NONBLOCK)
11#define sock_make_blocking(fd) fcntl(fd, F_SETFL, 0)
12#define sockerr_again() (errno == EINPROGRESS || errno == EINTR)
13#ifndef EVENTS_LIBEVENT
14#define closesocket(a) close(a)
15#else
16void closesocket( int fd );
17#endif
18#else
19# include <winsock2.h>
20# include <ws2tcpip.h>
21# if !defined(BITLBEE_CORE) && defined(_MSC_VER)
22#   pragma comment(lib,"bitlbee.lib")
23# endif
24# include <io.h>
25# define sock_make_nonblocking(fd) { int non_block = 1; ioctlsocket(fd, FIONBIO, &non_block); }
26# define sock_make_blocking(fd) { int non_block = 0; ioctlsocket(fd, FIONBIO, &non_block); }
27# define sockerr_again() (WSAGetLastError() == WSAEINTR || WSAGetLastError() == WSAEINPROGRESS || WSAGetLastError() == WSAEWOULDBLOCK)
28# define ETIMEDOUT WSAETIMEDOUT
29# define sleep(a) Sleep(a*1000)
30#endif
Note: See TracBrowser for help on using the repository browser.