summaryrefslogtreecommitdiffstats
path: root/src/polypcore/winsock.h
blob: 89e6a4ed73e9aeea1bbb61db273374ce2b4d98db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef foowinsockhfoo
#define foowinsockhfoo

#ifdef HAVE_WINSOCK2_H
#include <winsock2.h>

#define ESHUTDOWN       WSAESHUTDOWN
#define ECONNRESET      WSAECONNRESET
#define ECONNABORTED    WSAECONNABORTED
#define ENETRESET       WSAENETRESET
#define EINPROGRESS     WSAEINPROGRESS
#define EAFNOSUPPORT    WSAEAFNOSUPPORT
#define ETIMEDOUT       WSAETIMEDOUT
#define ECONNREFUSED    WSAECONNREFUSED
#define EHOSTUNREACH    WSAEHOSTUNREACH

#endif

#ifdef HAVE_WS2TCPIP_H
#include <ws2tcpip.h>
static const struct in6_addr in6addr_any = {{ IN6ADDR_ANY_INIT }};
static const struct in6_addr in6addr_loopback = {{ IN6ADDR_LOOPBACK_INIT }};
#endif

#endif