Tuned resource window

This commit is contained in:
Mark Qvist 2022-06-10 18:17:48 +02:00
parent 1ac7238347
commit 8451bbe7e6
1 changed files with 4 additions and 3 deletions

View File

@ -65,9 +65,10 @@ class Resource:
# If the RTT rate is higher than this value, # If the RTT rate is higher than this value,
# the max window size for fast links will be used. # the max window size for fast links will be used.
# The default is 3 Mbps (the value is stored in # The default is 675 Kbps (the value is stored in
# bytes per second). # bytes per second, hence the "/ 8").
RATE_FAST = (3*1000*1000)/8 # TODO: Reset
RATE_FAST = (675*1000) / 8
# The minimum allowed flexibility of the window size. # The minimum allowed flexibility of the window size.
# The difference between window_max and window_min # The difference between window_max and window_min