1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2025-07-07 00:04:57 +03:00

Merge PR #1410: Mayaqua/DNS.c: Fix DNS resolution in dual stack environment

This commit is contained in:
Davide Beatrici
2021-07-05 20:23:09 +02:00
committed by GitHub

View File

@ -425,7 +425,7 @@ void DnsResolver(THREAD *t, void *param)
resolver->IPv6.ipv6_scope_id = in->sin6_scope_id;
ipv6_ok = true;
}
else if (ipv4_ok == false)
else if (IsIP4(&ip) && ipv4_ok == false)
{
Copy(&resolver->IPv4, &ip, sizeof(resolver->IPv4));
ipv4_ok = true;