mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-07 06:09:42 +00:00
check if ident is unrechable only once
This commit is contained in:
@@ -461,7 +461,7 @@ namespace transport
|
|||||||
auto sz = it->second.delayedMessages.size ();
|
auto sz = it->second.delayedMessages.size ();
|
||||||
if (sz < MAX_NUM_DELAYED_MESSAGES)
|
if (sz < MAX_NUM_DELAYED_MESSAGES)
|
||||||
{
|
{
|
||||||
if (sz > CHECK_PROFILE_NUM_DELAYED_MESSAGES)
|
if (sz < CHECK_PROFILE_NUM_DELAYED_MESSAGES && sz + msgs.size () >= CHECK_PROFILE_NUM_DELAYED_MESSAGES)
|
||||||
{
|
{
|
||||||
auto profile = i2p::data::GetRouterProfile (ident);
|
auto profile = i2p::data::GetRouterProfile (ident);
|
||||||
if (profile && profile->IsUnreachable ())
|
if (profile && profile->IsUnreachable ())
|
||||||
|
|||||||
Reference in New Issue
Block a user