]> code.delx.au - pulseaudio/blob - src/pulsecore/arpa-inet.h
303c905b9a3410214a49b8308b9381f3f999af9c
[pulseaudio] / src / pulsecore / arpa-inet.h
1 #ifndef fooarpa_inethfoo
2 #define fooarpa_inethfoo
3
4
5 #if defined(HAVE_ARPA_INET_H)
6
7 #include <arpa/inet.h>
8
9 #elif defined(OS_IS_WIN32)
10
11 /* On Windows winsock2.h (here included via pulsecore/socket.h) provides most of the functionality of arpa/inet.h, except for
12 * the inet_ntop and inet_pton functions, which are implemented here. */
13
14 #include <pulsecore/socket.h>
15
16 const char *inet_ntop(int af, const void *src, char *dst, socklen_t cnt);
17
18 int inet_pton(int af, const char *src, void *dst);
19
20 #endif
21
22
23 #endif