aboutsummaryrefslogtreecommitdiff
path: root/lib/hostasyn.c
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/hostasyn.c
parentbb667c8ac642611ee2481fc3099f1789b3ca6982 (diff)
Adapted the c-ares code to the API change c-ares 1.5.0 brings in the
notifier callback(s).
Diffstat (limited to 'lib/hostasyn.c')
-rw-r--r--lib/hostasyn.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/hostasyn.c b/lib/hostasyn.c
index 792ef9ac0..b7fff8939 100644
--- a/lib/hostasyn.c
+++ b/lib/hostasyn.c
@@ -151,19 +151,31 @@ static CURLcode addrinfo_callback(void *arg, /* "struct connectdata *" */
CURLcode Curl_addrinfo4_callback(void *arg, /* "struct connectdata *" */
int status,
+#ifdef HAVE_CARES_CALLBACK_TIMEOUTS
+ int timeouts,
+#endif
struct hostent *hostent)
{
+#ifdef HAVE_CARES_CALLBACK_TIMEOUTS
+ (void)timeouts; /* ignored */
+#endif
return addrinfo_callback(arg, status, hostent);
}
#ifdef CURLRES_IPV6
CURLcode Curl_addrinfo6_callback(void *arg, /* "struct connectdata *" */
int status,
+#ifdef HAVE_CARES_CALLBACK_TIMEOUTS
+ int timeouts,
+#endif
struct addrinfo *ai)
{
/* NOTE: for CURLRES_ARES, the 'ai' argument is really a
* 'struct hostent' pointer.
*/
+#ifdef HAVE_CARES_CALLBACK_TIMEOUTS
+ (void)timeouts; /* ignored */
+#endif
return addrinfo_callback(arg, status, ai);
}
#endif