Fail silently when trying to convert IPv6 address to v4 family host

This commit is contained in:
Martin Willi
2011-01-05 16:46:04 +01:00
parent 6aba6ff061
commit 5eae41c6d8
+4
View File
@@ -476,6 +476,10 @@ host_t *host_create_from_dns(char *string, int af, u_int16_t port)
{
return host_create_any_port(af ? af : AF_INET6, port);
}
if (af == AF_INET && strchr(string, ':'))
{ /* do not try to convert v6 addresses for v4 family */
return NULL;
}
memset(&hints, 0, sizeof(hints));
hints.ai_family = af;