1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-09-18 01:33:00 +03:00

Merge pull request #1339 from domosekai/master

Mayaqua/Network: Skip IPv6 nameservers for SecureNAT
This commit is contained in:
Ilya Shipitsin 2021-04-27 16:23:03 +05:00 committed by GitHub
commit 146455e97d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8037,7 +8037,7 @@ bool UnixGetDefaultDns(IP *ip)
if (StrCmpi(t->Token[0], "nameserver") == 0)
{
StrToIP(ip, t->Token[1]);
f = true;
f = IsIP4(ip);
}
}
FreeToken(t);