aboutsummaryrefslogtreecommitdiffhomepage
path: root/portability.h
blob: c249a1052a846cb6e7dbf02ee42cdad919d5d25e (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#ifdef __APPLE__
	#ifndef CLOCK_MONOTONIC_COARSE
		#define CLOCK_MONOTONIC_COARSE _CLOCK_MONOTONIC_RAW
	#endif

	#include <libkern/OSByteOrder.h>
	#define htobe16(x) OSSwapHostToBigInt16(x)
	#define htole16(x) OSSwapHostToLittleInt16(x)
	#define be16toh(x) OSSwapBigToHostInt16(x)
	#define le16toh(x) OSSwapLittleToHostInt16(x)

	#define htobe32(x) OSSwapHostToBigInt32(x)
	#define htole32(x) OSSwapHostToLittleInt32(x)
	#define be32toh(x) OSSwapBigToHostInt32(x)
	#define le32toh(x) OSSwapLittleToHostInt32(x)

	#define htobe64(x) OSSwapHostToBigInt64(x)
	#define htole64(x) OSSwapHostToLittleInt64(x)
	#define be64toh(x) OSSwapBigToHostInt64(x)
	#define le64toh(x) OSSwapLittleToHostInt64(x)

	#ifndef IPV6_ADD_MEMBERSHIP
		#define IPV6_ADD_MEMBERSHIP IPV6_JOIN_GROUP
	#endif
#endif

#ifdef _WIN32
	#define WIN32_LEAN_AND_MEAN
	#include <windows.h>
	#include <winsock2.h>

	#define htobe16(x) htons(x)
	#define be16toh(x) ntohs(x)

	#define htobe32(x) htonl(x)
	#define be32toh(x) ntohl(x)

	#define htobe64(x) _byteswap_uint64(x)
	#define htole64(x) (x)
	#define be64toh(x) _byteswap_uint64(x)
	#define le64toh(x) (x)

	#define PRIsize_t "Iu"
#else
	#define PRIsize_t "zu"
#endif