fixed resolving numerical IPv6 addresses in host_create_from_dns()
This commit is contained in:
@@ -461,6 +461,11 @@ 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, ':'))
|
||||||
|
{ /* gethostbyname does not like IPv6 addresses, fallback */
|
||||||
|
return host_create_from_string(string, port);
|
||||||
|
}
|
||||||
|
|
||||||
if (af)
|
if (af)
|
||||||
{
|
{
|
||||||
ret = gethostbyname2_r(string, af, &host, buf, sizeof(buf), &ptr, &err);
|
ret = gethostbyname2_r(string, af, &host, buf, sizeof(buf), &ptr, &err);
|
||||||
|
|||||||
Reference in New Issue
Block a user