Merge pull request #1615 from Diapolo/net_noExtIp_IPv6only

do not use external IPv4 discovery, when -onlynet="IPv6"
This commit is contained in:
Gregory Maxwell 2012-07-25 11:11:25 -07:00
commit f00ffc6c00
1 changed files with 3 additions and 1 deletions

View File

@ -1878,7 +1878,9 @@ void static Discover()
}
#endif
CreateThread(ThreadGetMyExternalIP, NULL);
// Don't use external IPv4 discovery, when -onlynet="IPv6"
if (!IsLimited(NET_IPV4))
CreateThread(ThreadGetMyExternalIP, NULL);
}
void StartNode(void* parg)