aboutsummaryrefslogtreecommitdiff
path: root/ares/setup.h
diff options
context:
space:
mode:
Diffstat (limited to 'ares/setup.h')
-rw-r--r--ares/setup.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/ares/setup.h b/ares/setup.h
index 3a10745c2..c3f2a8b52 100644
--- a/ares/setup.h
+++ b/ares/setup.h
@@ -89,4 +89,15 @@ struct in6_addr
};
#endif
+#if defined(HAVE_INET_PTON) && defined(HAVE_INET_PTON_IPV6)
+#define ares_inet_pton(x,y,z) inet_pton(x,y,z)
+#else
+int ares_inet_pton(int af, const char *src, void *dst);
+#endif
+#if defined(HAVE_INET_NET_PTON) && defined(HAVE_INET_NET_PTON_IPV6)
+#define ares_inet_net_pton(w,x,y,z) inet_net_pton(w,x,y,z)
+#else
+int ares_inet_net_pton(int af, const char *src, void *dst, unsigned int size);
+#endif
+
#endif /* ARES_SETUP_H */