Merge pull request #1615 from Diapolo/net_noExtIp_IPv6only
do not use external IPv4 discovery, when -onlynet="IPv6"
This commit is contained in:
commit
f00ffc6c00
1 changed files with 3 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue