Added blocked IPs list to ifstats

This commit is contained in:
Mark Qvist
2026-07-20 16:14:07 +02:00
parent 6527423526
commit f81b267509
2 changed files with 8 additions and 0 deletions
+5
View File
@@ -525,6 +525,11 @@ class BackboneInterface(Interface):
elif str(e).endswith("Bad file descriptor"): pass
else: RNS.log("Error while shutting down socket for "+str(self)+": "+str(e), RNS.LOG_ERROR)
@property
def blocked_ip_list(self):
if not self.block_fast_flapping: return []
else: return list(self.fast_flapping.keys())
@property
def blocked_ip_count(self):
if not self.block_fast_flapping: return 0