summaryrefslogtreecommitdiff
path: root/include/libHX/socket.h
blob: e9db77ff22350770db7cee6bcc9f069af2f2d09b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef _LIBHX_SOCKET_H
#define _LIBHX_SOCKET_H 1

#ifdef _WIN32
#	include <ws2tcpip.h>
#else
#	include <netdb.h>
#	include <sys/socket.h>
#endif

#ifdef __cplusplus
extern "C" {
#endif

extern int HX_socket_from_env(const struct addrinfo *, const char *intf);
extern int HX_sockaddr_is_local(const struct sockaddr *, socklen_t, unsigned int flags);
extern int HX_ipaddr_is_local(const char *, unsigned int flags);

#ifdef __cplusplus
} /* extern "C" */
#endif

#endif /* _LIBHX_SOCKET_H */