Revert "using also bridge table on network hooking"

This reverts commit 33b22a174c.
This commit is contained in:
Domingo Dirutigliano
2025-04-12 20:32:52 +02:00
parent 33b22a174c
commit d0b2c67554
7 changed files with 63 additions and 71 deletions

View File

@@ -64,7 +64,7 @@ class TcpServer:
def recv_packet(self):
try:
return self.client_sock.recv(4096)
except (TimeoutError, ConnectionResetError):
except TimeoutError:
if self.verbose:
traceback.print_exc()
return False