Configured announce ingress limit defaults

This commit is contained in:
Mark Qvist 2023-10-01 11:39:24 +02:00
parent 03340ed091
commit fb4e53f6e3
7 changed files with 23 additions and 0 deletions

View file

@ -431,6 +431,11 @@ class AutoInterface(Interface):
self.txb += len(data)
# Until per-device sub-interfacing is implemented,
# ingress limiting should be disabled on AutoInterface
def should_ingress_limit(self):
return False
def __str__(self):
return "AutoInterface["+self.name+"]"