diff options
author | Yang Tse <yangsita@gmail.com> | 2010-01-22 06:36:52 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2010-01-22 06:36:52 +0000 |
commit | bfc4c33985aa40557a7b48d8052577b0c8bd0c5c (patch) | |
tree | 20a119eb6fc7b0260a9a55dd75bf4ab4b9db9f06 /lib/hostip6.c | |
parent | 5af20c70e4ae23437378d92e162d3377d9666b1f (diff) | |
download | curl-bfc4c33985aa40557a7b48d8052577b0c8bd0c5c.tar.gz |
Constantine Sapuntzakis refactoring of async callbacks, allowing
removal of Curl_addrinfo_copy(), Curl_addrinfo6_callback(), and
Curl_addrinfo4_callback()
Diffstat (limited to 'lib/hostip6.c')
-rw-r--r-- | lib/hostip6.c | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/lib/hostip6.c b/lib/hostip6.c index 518133365..ba50a0360 100644 --- a/lib/hostip6.c +++ b/lib/hostip6.c @@ -75,20 +75,6 @@ **********************************************************************/ #ifdef CURLRES_IPV6 -#ifndef CURLRES_ARES -#ifdef CURLRES_ASYNCH -/* - * Curl_addrinfo_copy() is used by the asynch callback to copy a given - * address. But this is an ipv6 build and then we don't copy the address, we - * just return the same pointer! - */ -Curl_addrinfo *Curl_addrinfo_copy(const void *orig, int port) -{ - (void) port; - return (Curl_addrinfo*)orig; -} -#endif /* CURLRES_ASYNCH */ -#endif /* CURLRES_ARES */ #if defined(CURLDEBUG) && defined(HAVE_GETNAMEINFO) /* These are strictly for memory tracing and are using the same style as the @@ -249,5 +235,5 @@ Curl_addrinfo *Curl_getaddrinfo(struct connectdata *conn, return res; } #endif /* !USE_THREADING_GETADDRINFO && !CURLRES_ARES */ -#endif /* ipv6 */ +#endif /* CURLRES_IPV6 */ |