diff options
author | Christian Pointner <equinox@anytun.org> | 2014-08-30 13:11:07 +0000 |
---|---|---|
committer | Christian Pointner <equinox@anytun.org> | 2014-08-30 13:11:07 +0000 |
commit | 31b74f86b046a24f253c37e69243b18996d2e3bf (patch) | |
tree | fcfdd9f90765ca99e39c488f20e61ed0f394d138 /src/udp.c | |
parent | fixe bsd tun device warnings (diff) |
fixed missing AI_ADDRCONFIG on some platforms
Diffstat (limited to 'src/udp.c')
-rw-r--r-- | src/udp.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -65,6 +65,10 @@ #include <arpa/inet.h> #include <netinet/in.h> +#ifndef AI_ADDRCONFIG +#define AI_ADDRCONFIG 0 +#endif + static int udp_resolv_local(udp_t* sock, const char* local_addr, const char* port, resolv_addr_type_t resolv_type, unsigned int* idx) { struct addrinfo hints, *res; |