mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-02-02 06:54:15 +00:00
give priority to ipv6
This commit is contained in:
parent
06b0a50462
commit
5c20751937
@ -256,7 +256,10 @@ namespace data
|
|||||||
}
|
}
|
||||||
if (isValidAddress)
|
if (isValidAddress)
|
||||||
{
|
{
|
||||||
addresses->push_back(std::make_shared<Address>(address));
|
if (supportedTransports & eNTCPV6) // ipv6 NTCP ?
|
||||||
|
addresses->push_front(std::make_shared<Address>(address)); // ipv6 has priority over ipv4
|
||||||
|
else
|
||||||
|
addresses->push_back(std::make_shared<Address>(address));
|
||||||
m_SupportedTransports |= supportedTransports;
|
m_SupportedTransports |= supportedTransports;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user