mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-10 08:00:38 +03:00
double RTO after every resend attempt
This commit is contained in:
parent
a8b4f38865
commit
e8c9d2db10
@ -665,6 +665,7 @@ namespace stream
|
||||
if (packets.size () > 0)
|
||||
{
|
||||
m_NumResendAttempts++;
|
||||
m_RTO *= 2;
|
||||
switch (m_NumResendAttempts)
|
||||
{
|
||||
case 1: // congesion avoidance
|
||||
@ -672,9 +673,10 @@ namespace stream
|
||||
if (m_WindowSize < MIN_WINDOW_SIZE) m_WindowSize = MIN_WINDOW_SIZE;
|
||||
break;
|
||||
case 2:
|
||||
m_RTO = INITIAL_RTO; // drop RTO to initial upon tunnels pair change first time
|
||||
// no break here
|
||||
case 4:
|
||||
UpdateCurrentRemoteLease (); // pick another lease
|
||||
m_RTO = INITIAL_RTO; // drop RTO to initial upon tunnels pair change
|
||||
LogPrint (eLogWarning, "Another remote lease has been selected for stream");
|
||||
break;
|
||||
case 3:
|
||||
|
Loading…
Reference in New Issue
Block a user