From 79725a1637821dea3140229f65f2c943d0cb449e Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Thu, 28 Apr 2022 10:56:19 +0200 Subject: [PATCH] Cleanup --- RNS/Transport.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/RNS/Transport.py b/RNS/Transport.py index 3cd2095..8a9ad9e 100755 --- a/RNS/Transport.py +++ b/RNS/Transport.py @@ -753,9 +753,7 @@ class Transport: else: # If the IFAC flag is not set, but should be, - # we drop the packet. - # TODO: Remove log statements - RNS.log(str(interface)+" with IFAC enabled received packet without access code, dropping.", RNS.LOG_EXTREME) + # drop the packet. return else: @@ -763,8 +761,6 @@ class Transport: # check the received packet IFAC flag. if raw[0] & 0x80 == 0x80: # If the flag is set, drop the packet - # TODO: Remove log statements - RNS.log(str(interface)+" with IFAC disabled received packet with access code, dropping.", RNS.LOG_EXTREME) return while (Transport.jobs_running):