1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-19 01:09:58 +00:00

drop earlier if delayed queue is semi-full

This commit is contained in:
orignal 2024-02-01 18:55:10 -05:00
parent 96cf6ca531
commit 8f28cee32f

View File

@ -477,6 +477,9 @@ namespace transport
} }
} }
for (auto& it1: msgs) for (auto& it1: msgs)
if (sz > MAX_NUM_DELAYED_MESSAGES/2 && it1->onDrop)
it1->Drop (); // drop earlier because we can handle it
else
it->second.delayedMessages.push_back (it1); it->second.delayedMessages.push_back (it1);
} }
else else