2012-01-03 23:33:31 +01:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2013-10-20 21:25:06 +02:00
|
|
|
// Copyright (c) 2009-2013 The Bitcoin developers
|
2012-01-03 23:33:31 +01:00
|
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
2012-05-18 16:02:28 +02:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2013-04-13 07:13:08 +02:00
|
|
|
|
2012-01-03 23:33:31 +01:00
|
|
|
#ifndef _BITCOIN_COMPAT_H
|
2013-07-24 14:53:45 +02:00
|
|
|
#define _BITCOIN_COMPAT_H
|
2012-01-03 23:33:31 +01:00
|
|
|
|
2012-04-15 22:10:54 +02:00
|
|
|
#ifdef WIN32
|
2013-10-11 15:37:36 +02:00
|
|
|
#ifdef _WIN32_WINNT
|
|
|
|
#undef _WIN32_WINNT
|
|
|
|
#endif
|
2012-04-15 22:10:54 +02:00
|
|
|
#define _WIN32_WINNT 0x0501
|
|
|
|
#define WIN32_LEAN_AND_MEAN 1
|
|
|
|
#ifndef NOMINMAX
|
|
|
|
#define NOMINMAX
|
|
|
|
#endif
|
2013-10-11 15:37:36 +02:00
|
|
|
#ifdef FD_SETSIZE
|
|
|
|
#undef FD_SETSIZE // prevent redefinition compiler warning
|
|
|
|
#endif
|
2013-04-26 01:05:35 +02:00
|
|
|
#define FD_SETSIZE 1024 // max number of fds in fd_set
|
2013-04-13 07:13:08 +02:00
|
|
|
|
|
|
|
#include <winsock2.h> // Must be included before mswsock.h and windows.h
|
|
|
|
|
|
|
|
#include <mswsock.h>
|
|
|
|
#include <windows.h>
|
2012-04-15 22:10:54 +02:00
|
|
|
#include <ws2tcpip.h>
|
|
|
|
#else
|
|
|
|
#include <arpa/inet.h>
|
2013-04-13 07:13:08 +02:00
|
|
|
#include <ifaddrs.h>
|
|
|
|
#include <limits.h>
|
2012-04-15 22:10:54 +02:00
|
|
|
#include <net/if.h>
|
2013-04-13 07:13:08 +02:00
|
|
|
#include <netdb.h>
|
2012-04-15 22:10:54 +02:00
|
|
|
#include <netinet/in.h>
|
2013-04-13 07:13:08 +02:00
|
|
|
#include <sys/fcntl.h>
|
|
|
|
#include <sys/mman.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
2012-04-15 22:10:54 +02:00
|
|
|
#endif
|
|
|
|
|
2012-01-03 23:33:31 +01:00
|
|
|
#ifdef WIN32
|
|
|
|
#define MSG_DONTWAIT 0
|
|
|
|
#else
|
2013-07-24 14:53:45 +02:00
|
|
|
typedef u_int SOCKET;
|
2012-01-03 23:33:31 +01:00
|
|
|
#include "errno.h"
|
|
|
|
#define WSAGetLastError() errno
|
|
|
|
#define WSAEINVAL EINVAL
|
|
|
|
#define WSAEALREADY EALREADY
|
|
|
|
#define WSAEWOULDBLOCK EWOULDBLOCK
|
|
|
|
#define WSAEMSGSIZE EMSGSIZE
|
|
|
|
#define WSAEINTR EINTR
|
|
|
|
#define WSAEINPROGRESS EINPROGRESS
|
|
|
|
#define WSAEADDRINUSE EADDRINUSE
|
|
|
|
#define WSAENOTSOCK EBADF
|
|
|
|
#define INVALID_SOCKET (SOCKET)(~0)
|
|
|
|
#define SOCKET_ERROR -1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
inline int myclosesocket(SOCKET& hSocket)
|
|
|
|
{
|
|
|
|
if (hSocket == INVALID_SOCKET)
|
|
|
|
return WSAENOTSOCK;
|
|
|
|
#ifdef WIN32
|
|
|
|
int ret = closesocket(hSocket);
|
|
|
|
#else
|
|
|
|
int ret = close(hSocket);
|
|
|
|
#endif
|
|
|
|
hSocket = INVALID_SOCKET;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
#define closesocket(s) myclosesocket(s)
|
|
|
|
|
2012-04-15 22:10:54 +02:00
|
|
|
|
2012-01-03 23:33:31 +01:00
|
|
|
#endif
|