mirror of
https://github.com/markqvist/Reticulum.git
synced 2024-11-05 13:50:14 +00:00
Added medium window to channel
This commit is contained in:
parent
a06e752b76
commit
fc5b02ed5d
@ -233,6 +233,9 @@ class Channel(contextlib.AbstractContextManager):
|
|||||||
# The maximum window size for transfers on slow links
|
# The maximum window size for transfers on slow links
|
||||||
WINDOW_MAX_SLOW = 5
|
WINDOW_MAX_SLOW = 5
|
||||||
|
|
||||||
|
# The maximum window size for transfers on mid-speed links
|
||||||
|
WINDOW_MAX_MEDIUM = 16
|
||||||
|
|
||||||
# The maximum window size for transfers on fast links
|
# The maximum window size for transfers on fast links
|
||||||
WINDOW_MAX_FAST = 48
|
WINDOW_MAX_FAST = 48
|
||||||
|
|
||||||
@ -246,7 +249,8 @@ class Channel(contextlib.AbstractContextManager):
|
|||||||
|
|
||||||
# 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.
|
||||||
RTT_FAST = 0.2
|
RTT_FAST = 0.25
|
||||||
|
RTT_MEDIUM = 0.75
|
||||||
|
|
||||||
# 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
|
||||||
@ -275,6 +279,7 @@ class Channel(contextlib.AbstractContextManager):
|
|||||||
self.window_min = Channel.WINDOW_MIN
|
self.window_min = Channel.WINDOW_MIN
|
||||||
self.window_flexibility = Channel.WINDOW_FLEXIBILITY
|
self.window_flexibility = Channel.WINDOW_FLEXIBILITY
|
||||||
self.fast_rate_rounds = 0
|
self.fast_rate_rounds = 0
|
||||||
|
self.medium_rate_rounds = 0
|
||||||
|
|
||||||
def __enter__(self) -> Channel:
|
def __enter__(self) -> Channel:
|
||||||
return self
|
return self
|
||||||
@ -462,15 +467,25 @@ class Channel(contextlib.AbstractContextManager):
|
|||||||
if self._outlet.rtt > Channel.RTT_FAST:
|
if self._outlet.rtt > Channel.RTT_FAST:
|
||||||
self.fast_rate_rounds = 0
|
self.fast_rate_rounds = 0
|
||||||
|
|
||||||
|
if self._outlet.rtt > Channel.RTT_MEDIUM:
|
||||||
|
self.medium_rate_rounds = 0
|
||||||
|
|
||||||
else:
|
else:
|
||||||
self.fast_rate_rounds += 1
|
self.medium_rate_rounds += 1
|
||||||
|
if self.window_max < Channel.WINDOW_MAX_MEDIUM and self.medium_rate_rounds == Channel.FAST_RATE_THRESHOLD:
|
||||||
if self.window_max < Channel.WINDOW_MAX_FAST and self.fast_rate_rounds == Channel.FAST_RATE_THRESHOLD:
|
self.window_max = Channel.WINDOW_MAX_MEDIUM
|
||||||
self.window_max = Channel.WINDOW_MAX_FAST
|
|
||||||
|
|
||||||
# TODO: Remove at some point
|
# TODO: Remove at some point
|
||||||
RNS.log("Increased "+str(self)+" max window to "+str(self.window_max), RNS.LOG_EXTREME)
|
RNS.log("Increased "+str(self)+" max window to "+str(self.window_max), RNS.LOG_EXTREME)
|
||||||
|
|
||||||
|
else:
|
||||||
|
self.fast_rate_rounds += 1
|
||||||
|
if self.window_max < Channel.WINDOW_MAX_FAST and self.fast_rate_rounds == Channel.FAST_RATE_THRESHOLD:
|
||||||
|
self.window_max = Channel.WINDOW_MAX_FAST
|
||||||
|
# TODO: Remove at some point
|
||||||
|
RNS.log("Increased "+str(self)+" max window to "+str(self.window_max), RNS.LOG_EXTREME)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
else:
|
else:
|
||||||
RNS.log("Envelope not found in TX ring for "+str(self), RNS.LOG_DEBUG)
|
RNS.log("Envelope not found in TX ring for "+str(self), RNS.LOG_DEBUG)
|
||||||
if not envelope:
|
if not envelope:
|
||||||
|
Loading…
Reference in New Issue
Block a user