Skip to content

Commit

Permalink
don't filter yggdrasil address
Browse files Browse the repository at this point in the history
  • Loading branch information
orignal committed Dec 28, 2022
1 parent 85e31f8 commit 5a16731
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libi2pd/NTCP2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down

0 comments on commit 5a16731

Please sign in to comment.