source: sock.h @ fcc2da9

Last change on this file since fcc2da9 was fcc2da9, checked in by Jelmer Vernooij <jelmer@…>, at 2006-05-26T15:46:51Z

Remove unnecessary Windows-specific code.

  • Property mode set to 100644
File size: 1.1 KB
RevLine 
[8a9afe4]1#include <errno.h>
2#include <fcntl.h>
3
[e4d6271]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
[b7d3cc34]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)
[701acdd4]18#define sock_make_blocking(fd) fcntl(fd, F_SETFL, 0)
[b7d3cc34]19#define sockerr_again() (errno == EINPROGRESS || errno == EINTR)
20#define closesocket(a) close(a)
21#else
22# include <winsock2.h>
[fcc2da9]23# ifdef IPV6
24#  include <ws2tcpip.h>
25# endif
[b7d3cc34]26# if !defined(BITLBEE_CORE) && defined(_MSC_VER)
27#   pragma comment(lib,"bitlbee.lib")
28# endif
29# include <io.h>
30# define sock_make_nonblocking(fd) { int non_block = 1; ioctlsocket(fd, FIONBIO, &non_block); }
[701acdd4]31# define sock_make_blocking(fd) { int non_block = 0; ioctlsocket(fd, FIONBIO, &non_block); }
[b7d3cc34]32# define sockerr_again() (WSAGetLastError() == WSAEINTR || WSAGetLastError() == WSAEINPROGRESS || WSAGetLastError() == WSAEWOULDBLOCK)
33# define ETIMEDOUT WSAETIMEDOUT
34# define sleep(a) Sleep(a*1000)
35#endif
Note: See TracBrowser for help on using the repository browser.