Browse Source

drop earlier if outgoing queue is semi-full

pull/2013/head
orignal 5 months ago
parent
commit
96cf6ca531
  1. 7
      libi2pd/NTCP2.cpp
  2. 6
      libi2pd/SSU2Session.cpp

7
libi2pd/NTCP2.cpp

@ -1250,8 +1250,13 @@ namespace transport @@ -1250,8 +1250,13 @@ namespace transport
void NTCP2Session::PostI2NPMessages (std::vector<std::shared_ptr<I2NPMessage> > msgs)
{
if (m_IsTerminated) return;
bool isSemiFull = m_SendQueue.size () > NTCP2_MAX_OUTGOING_QUEUE_SIZE/2;
for (auto it: msgs)
m_SendQueue.push_back (std::move (it));
if (isSemiFull && it->onDrop)
it->Drop (); // drop earlier because we can handle it
else
m_SendQueue.push_back (std::move (it));
if (!m_IsSending)
SendQueue ();
else if (m_SendQueue.size () > NTCP2_MAX_OUTGOING_QUEUE_SIZE)

6
libi2pd/SSU2Session.cpp

@ -351,8 +351,12 @@ namespace transport @@ -351,8 +351,12 @@ namespace transport
void SSU2Session::PostI2NPMessages (std::vector<std::shared_ptr<I2NPMessage> > msgs)
{
if (m_State == eSSU2SessionStateTerminated) return;
bool isSemiFull = m_SendQueue.size () > SSU2_MAX_OUTGOING_QUEUE_SIZE/2;
for (auto it: msgs)
m_SendQueue.push_back (std::move (it));
if (isSemiFull && it->onDrop)
it->Drop (); // drop earlier because we can handle it
else
m_SendQueue.push_back (std::move (it));
SendQueue ();
if (m_SendQueue.size () > 0) // windows is full

Loading…
Cancel
Save