From 458c69cca4af4a06396610a2699e6060c62a9a9a Mon Sep 17 00:00:00 2001 From: Yaro Kasear Date: Thu, 1 May 2025 10:18:16 -0500 Subject: [PATCH] Remove redundant client-AP relationship guessing logic from packet handling --- listener.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/listener.py b/listener.py index 241fd72..5aeace3 100755 --- a/listener.py +++ b/listener.py @@ -89,12 +89,6 @@ def handle_packet(pkt): if is_unicast(a2) and a2 not in aps: clients[a2] += 1 - # === Guess client <-> AP relationships === - if a1 in aps and a2: - ap_clients[a1].add(a2) - elif a2 in aps and a1: - ap_clients[a2].add(a1) - # Track clients talking to the same AP we're connected to if target_ap_bssid: if a1 and a2: