This checking isn't necessary because MSVC for Unix doesn't exist.
[novacoin.git] / src / compat.h
1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2012 The Bitcoin developers
3 // Distributed under the MIT/X11 software license, see the accompanying
4 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 #ifndef _BITCOIN_COMPAT_H
6 #define _BITCOIN_COMPAT_H 1
7
8 #ifdef WIN32
9 #define _WIN32_WINNT 0x0501
10 #define WIN32_LEAN_AND_MEAN 1
11 #ifndef NOMINMAX
12 #define NOMINMAX
13 #endif
14 #ifndef _MSC_VER
15 #define FD_SETSIZE 1024 // max number of fds in fd_set
16 #endif
17 #include <winsock2.h>
18 #include <mswsock.h>
19 #include <ws2tcpip.h>
20 #else
21 #include <sys/types.h>
22 #include <sys/socket.h>
23 #include <sys/fcntl.h>
24 #include <arpa/inet.h>
25 #include <netdb.h>
26 #include <net/if.h>
27 #include <netinet/in.h>
28 #include <ifaddrs.h>
29
30 typedef u_int SOCKET;
31 #endif
32
33 #ifdef WIN32
34 #define MSG_NOSIGNAL        0
35 #define MSG_DONTWAIT        0
36 typedef int socklen_t;
37 #else
38 #include "errno.h"
39 #define WSAGetLastError()   errno
40 #define WSAEINVAL           EINVAL
41 #define WSAEALREADY         EALREADY
42 #define WSAEWOULDBLOCK      EWOULDBLOCK
43 #define WSAEMSGSIZE         EMSGSIZE
44 #define WSAEINTR            EINTR
45 #define WSAEINPROGRESS      EINPROGRESS
46 #define WSAEADDRINUSE       EADDRINUSE
47 #define WSAENOTSOCK         EBADF
48 #define INVALID_SOCKET      (SOCKET)(~0)
49 #define SOCKET_ERROR        -1
50 #endif
51
52 inline int myclosesocket(SOCKET& hSocket)
53 {
54     if (hSocket == INVALID_SOCKET)
55         return WSAENOTSOCK;
56 #ifdef WIN32
57     int ret = closesocket(hSocket);
58 #else
59     int ret = close(hSocket);
60 #endif
61     hSocket = INVALID_SOCKET;
62     return ret;
63 }
64 #define closesocket(s)      myclosesocket(s)
65
66
67 #endif