From a1f32ffee540bcef046dc499938585c5da9d0aa8 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 11 Nov 2010 14:51:39 +0100 Subject: ip_version: moved to connection struct The IP version choice was previously only in the UserDefined struct within the SessionHandle, but since we sometimes alter that option during a request we need to have it on a per-connection basis. I also moved more "init conn" code into the allocate_conn() function which is designed for that purpose more or less. --- lib/hostares.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/hostares.c') diff --git a/lib/hostares.c b/lib/hostares.c index 5d54ac1b4..e31a677da 100644 --- a/lib/hostares.c +++ b/lib/hostares.c @@ -378,7 +378,7 @@ Curl_addrinfo *Curl_getaddrinfo(struct connectdata *conn, return Curl_ip2addr(AF_INET6, &in6, hostname, port); } - switch(data->set.ip_version) { + switch(conn->ip_version) { default: #if ARES_VERSION >= 0x010601 family = PF_UNSPEC; /* supported by c-ares since 1.6.1, so for older -- cgit v1.2.3