mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-02-02 11:04:00 +01:00
don't filter yggdrasil address
This commit is contained in:
parent
85e31f84ec
commit
5a167316cb
|
@ -1470,7 +1470,8 @@ namespace transport
|
|||
if (!ec)
|
||||
{
|
||||
LogPrint (eLogDebug, "NTCP2: Connected from ", ep);
|
||||
if (!i2p::util::net::IsInReservedRange(ep.address ()))
|
||||
if (!i2p::util::net::IsInReservedRange(ep.address ()) ||
|
||||
i2p::util::net::IsYggdrasilAddress (ep.address ()))
|
||||
{
|
||||
if (conn)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue