1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-09-18 01:33:00 +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
commit 513ad6e792
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;