From 99504b7f7d29aec664f14434b68a29e568bc6f4c Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Fri, 12 Dec 2025 00:22:41 +0100 Subject: [PATCH] Reverted AutoInterface ingress limit --- RNS/Interfaces/AutoInterface.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/RNS/Interfaces/AutoInterface.py b/RNS/Interfaces/AutoInterface.py index 16f1c79..04dbe6e 100644 --- a/RNS/Interfaces/AutoInterface.py +++ b/RNS/Interfaces/AutoInterface.py @@ -615,7 +615,9 @@ class AutoInterfacePeer(Interface): if self in RNS.Transport.interfaces: RNS.Transport.interfaces.remove(self) # Ingress-limit announces per discovered peer - def should_ingress_limit(self): return True + # TODO: Disabled until potential discovery issue + # has been diagnosed + def should_ingress_limit(self): return False class AutoInterfaceHandler(socketserver.BaseRequestHandler): def __init__(self, callback, *args, **keys):