don't create peer for unreachable router

This commit is contained in:
orignal 2024-01-16 14:33:36 -05:00
parent 49f4dc53ad
commit 7cfcb12c7b

View File

@ -436,6 +436,10 @@ namespace transport
auto it = m_Peers.find (ident);
if (it == m_Peers.end ())
{
// check if not known as unreachable
auto profile = i2p::data::GetRouterProfile (ident);
if (profile && profile->IsUnreachable ()) return; // don't create peer to unreachable router
// try to connect
bool connected = false;
try
{