From 5d677d2fb7b011b90edc2485cf08e591ff74faae Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Sat, 11 Jan 2025 17:25:03 +0100 Subject: [PATCH] Set correct hardware MTU --- RNS/Interfaces/TCPInterface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RNS/Interfaces/TCPInterface.py b/RNS/Interfaces/TCPInterface.py index b1e8ee4..51ac2a7 100644 --- a/RNS/Interfaces/TCPInterface.py +++ b/RNS/Interfaces/TCPInterface.py @@ -456,7 +456,7 @@ class TCPServerInterface(Interface): if port != None: bindport = port - self.HW_MTU = 1064 + self.HW_MTU = 32768 self.online = False self.spawned_interfaces = []