mirror of
https://github.com/markqvist/Reticulum.git
synced 2025-08-01 19:16:08 -04:00
Epoll backend switch
This commit is contained in:
parent
6dc33126a5
commit
13b4291840
4 changed files with 11 additions and 4 deletions
|
@ -127,7 +127,9 @@ class Interface:
|
|||
|
||||
def optimise_mtu(self):
|
||||
if self.AUTOCONFIGURE_MTU:
|
||||
if self.bitrate > 16_000_000:
|
||||
if self.bitrate > 500_000_000:
|
||||
self.HW_MTU = 1048576
|
||||
elif self.bitrate > 16_000_000:
|
||||
self.HW_MTU = 262144
|
||||
elif self.bitrate > 8_000_000:
|
||||
self.HW_MTU = 131072
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue