Reverted AutoInterface ingress limit
Some checks failed
Build Reticulum / test (push) Has been cancelled
Build Reticulum / package (push) Has been cancelled
Build Reticulum / release (push) Has been cancelled

This commit is contained in:
Mark Qvist 2025-12-12 00:22:41 +01:00
parent 72c1995551
commit 99504b7f7d

View file

@ -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):