Added path request frequency monitoring support to interfaces subsystem

This commit is contained in:
Mark Qvist
2026-05-09 00:51:44 +02:00
parent ef1ecb35e1
commit 8ed31d0dc8
6 changed files with 157 additions and 10 deletions
+6
View File
@@ -634,6 +634,12 @@ class TCPServerInterface(Interface):
def sent_announce(self, from_spawned=False):
if from_spawned: self.oa_freq_deque.append(time.time())
def received_path_request(self, from_spawned=False):
if from_spawned: self.ip_freq_deque.append(time.time())
def sent_path_request(self, from_spawned=False):
if from_spawned: self.op_freq_deque.append(time.time())
def process_outgoing(self, data):
pass