handle 0.0.0.0 string and af == AF_INET6
This commit is contained in:
@@ -461,7 +461,7 @@ host_t *host_create_from_dns(char *string, int af, u_int16_t port)
|
|||||||
char buf[512];
|
char buf[512];
|
||||||
int err, ret;
|
int err, ret;
|
||||||
|
|
||||||
if (strchr(string, ':'))
|
if (af == AF_INET6 || strchr(string, ':'))
|
||||||
{ /* gethostbyname does not like IPv6 addresses, fallback */
|
{ /* gethostbyname does not like IPv6 addresses, fallback */
|
||||||
return host_create_from_string(string, port);
|
return host_create_from_string(string, port);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user