mirror of
https://github.com/markqvist/Reticulum.git
synced 2024-10-01 03:15:44 -04:00
Add channel window mode for slow links
This commit is contained in:
parent
6fd3edbb8f
commit
61626897e7
@ -251,6 +251,7 @@ class Channel(contextlib.AbstractContextManager):
|
|||||||
# the max window size for fast links will be used.
|
# the max window size for fast links will be used.
|
||||||
RTT_FAST = 0.25
|
RTT_FAST = 0.25
|
||||||
RTT_MEDIUM = 0.75
|
RTT_MEDIUM = 0.75
|
||||||
|
RTT_SLOW = 1.45
|
||||||
|
|
||||||
# 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
|
||||||
@ -274,13 +275,20 @@ class Channel(contextlib.AbstractContextManager):
|
|||||||
self._next_rx_sequence = 0
|
self._next_rx_sequence = 0
|
||||||
self._message_factories: dict[int, Type[MessageBase]] = {}
|
self._message_factories: dict[int, Type[MessageBase]] = {}
|
||||||
self._max_tries = 5
|
self._max_tries = 5
|
||||||
self.window = Channel.WINDOW
|
|
||||||
self.window_max = Channel.WINDOW_MAX_SLOW
|
|
||||||
self.window_min = Channel.WINDOW_MIN
|
|
||||||
self.window_flexibility = Channel.WINDOW_FLEXIBILITY
|
|
||||||
self.fast_rate_rounds = 0
|
self.fast_rate_rounds = 0
|
||||||
self.medium_rate_rounds = 0
|
self.medium_rate_rounds = 0
|
||||||
|
|
||||||
|
if self._outlet.rtt > Channel.RTT_SLOW:
|
||||||
|
self.window = 1
|
||||||
|
self.window_max = 1
|
||||||
|
self.window_min = 1
|
||||||
|
self.window_flexibility = 1
|
||||||
|
else:
|
||||||
|
self.window = Channel.WINDOW
|
||||||
|
self.window_max = Channel.WINDOW_MAX_SLOW
|
||||||
|
self.window_min = Channel.WINDOW_MIN
|
||||||
|
self.window_flexibility = Channel.WINDOW_FLEXIBILITY
|
||||||
|
|
||||||
def __enter__(self) -> Channel:
|
def __enter__(self) -> Channel:
|
||||||
return self
|
return self
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user