From: Daniel Stenberg Date: Mon, 18 Feb 2002 23:12:37 +0000 (+0000) Subject: Rick Richardson's getaddrinfo() usage fix to speed up name resolves X-Git-Tag: curl-7_9_5-pre2~15 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3d5732d4e051c503af0b000e1cc81cbcf04490a4;p=curl Rick Richardson's getaddrinfo() usage fix to speed up name resolves --- diff --git a/lib/hostip.c b/lib/hostip.c index 0118ebd5d..711d1550e 100644 --- a/lib/hostip.c +++ b/lib/hostip.c @@ -292,7 +292,7 @@ Curl_addrinfo *Curl_getaddrinfo(struct SessionHandle *data, char sbuf[NI_MAXSERV]; memset(&hints, 0, sizeof(hints)); - hints.ai_family = PF_UNSPEC; + hints.ai_family = PF_INET; hints.ai_socktype = SOCK_STREAM; hints.ai_flags = AI_CANONNAME; snprintf(sbuf, sizeof(sbuf), "%d", port);