From 954567c581f63b20b85863f1ecf2fa3044d64ebe Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Wed, 19 Aug 2026 18:06:17 +0200 Subject: [PATCH] Allow disabling link MTU discovery --- RNS/Reticulum.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/RNS/Reticulum.py b/RNS/Reticulum.py index 428085ab..c699cc1e 100755 --- a/RNS/Reticulum.py +++ b/RNS/Reticulum.py @@ -540,7 +540,8 @@ class Reticulum: if option == "link_mtu_discovery": v = self.config["reticulum"].as_bool(option) - if v == True: Reticulum.__link_mtu_discovery = True + if v == True: Reticulum.__link_mtu_discovery = True + elif v == False: Reticulum.__link_mtu_discovery = False if option == "enable_remote_management": v = self.config["reticulum"].as_bool(option)