summaryrefslogtreecommitdiff
path: root/lib/hostip.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2007-09-28 21:48:28 +0000
committerDaniel Stenberg <daniel@haxx.se>2007-09-28 21:48:28 +0000
commit2c105af910df6a607989143fb14a7ae67b17a9c9 (patch)
tree04649eca1cc3b16fcb3c390fb6c0a65f88864021 /lib/hostip.h
parentbb667c8ac642611ee2481fc3099f1789b3ca6982 (diff)
downloadcurl-2c105af910df6a607989143fb14a7ae67b17a9c9.tar.gz
Adapted the c-ares code to the API change c-ares 1.5.0 brings in the
notifier callback(s).
Diffstat (limited to 'lib/hostip.h')
-rw-r--r--lib/hostip.h16
1 files changed, 15 insertions, 1 deletions
diff --git a/lib/hostip.h b/lib/hostip.h
index 199c666bd..53093c169 100644
--- a/lib/hostip.h
+++ b/lib/hostip.h
@@ -7,7 +7,7 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
- * Copyright (C) 1998 - 2006, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) 1998 - 2007, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
@@ -36,6 +36,10 @@
*/
#ifdef USE_ARES
+#include <ares_version.h>
+#endif
+
+#ifdef USE_ARES
#define CURLRES_ASYNCH
#define CURLRES_ARES
#endif
@@ -85,6 +89,10 @@
#ifdef CURLRES_ARES
#define CURL_ASYNC_SUCCESS ARES_SUCCESS
+#if ARES_VERSION >= 0x010500
+/* c-ares 1.5.0 or later, the callback proto is modified */
+#define HAVE_CARES_CALLBACK_TIMEOUTS 1
+#endif
#else
#define CURL_ASYNC_SUCCESS CURLE_OK
#define ares_cancel(x) do {} while(0)
@@ -216,11 +224,17 @@ int curl_dogetnameinfo(GETNAMEINFO_QUAL_ARG1 GETNAMEINFO_TYPE_ARG1 sa,
resolve, ipv4 */
CURLcode Curl_addrinfo4_callback(void *arg,
int status,
+#ifdef HAVE_CARES_CALLBACK_TIMEOUTS
+ int timeouts,
+#endif
struct hostent *hostent);
/* This is the callback function that is used when we build with asynch
resolve, ipv6 */
CURLcode Curl_addrinfo6_callback(void *arg,
int status,
+#ifdef HAVE_CARES_CALLBACK_TIMEOUTS
+ int timeouts,
+#endif
struct addrinfo *ai);