set half of window on remote lease change

This commit is contained in:
orignal 2024-09-03 15:20:33 -04:00
parent ae65af07c2
commit ead1b72886
2 changed files with 2 additions and 2 deletions

View File

@ -1439,7 +1439,7 @@ namespace stream
m_RTO = INITIAL_RTO; m_RTO = INITIAL_RTO;
if (m_WindowSize > INITIAL_WINDOW_SIZE) if (m_WindowSize > INITIAL_WINDOW_SIZE)
{ {
m_WindowDropTargetSize = INITIAL_WINDOW_SIZE; m_WindowDropTargetSize = std::max (m_WindowSize/2, (float)INITIAL_WINDOW_SIZE);
m_IsWinDropped = true; m_IsWinDropped = true;
} }
else else

View File

@ -58,7 +58,7 @@ namespace stream
const int MAX_WINDOW_SIZE = 1024; const int MAX_WINDOW_SIZE = 1024;
const double RTT_EWMA_ALPHA = 0.25; const double RTT_EWMA_ALPHA = 0.25;
const double SLOWRTT_EWMA_ALPHA = 0.125; const double SLOWRTT_EWMA_ALPHA = 0.125;
const double PREV_SPEED_KEEP_TIME_COEFF = 0.1; // 0.1 - 1 // how long will the window size stay around the previous drop level, less is longer const double PREV_SPEED_KEEP_TIME_COEFF = 0.35; // 0.1 - 1 // how long will the window size stay around the previous drop level, less is longer
const int MIN_RTO = 20; // in milliseconds const int MIN_RTO = 20; // in milliseconds
const int INITIAL_RTT = 8000; // in milliseconds const int INITIAL_RTT = 8000; // in milliseconds
const int INITIAL_RTO = 9000; // in milliseconds const int INITIAL_RTO = 9000; // in milliseconds