From d334613888446264fca05da6d61050c5745d4ebb Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Thu, 9 Jun 2022 16:48:31 +0200 Subject: [PATCH] Removed delay --- RNS/Interfaces/LocalInterface.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/RNS/Interfaces/LocalInterface.py b/RNS/Interfaces/LocalInterface.py index 09b6bd8..dcb77cd 100644 --- a/RNS/Interfaces/LocalInterface.py +++ b/RNS/Interfaces/LocalInterface.py @@ -152,10 +152,6 @@ class LocalClientInterface(Interface): def processOutgoing(self, data): if self.online: - # TODO: Reset maybe? - while self.writing: - time.sleep(0.0005) - try: self.writing = True data = bytes([HDLC.FLAG])+HDLC.escape(data)+bytes([HDLC.FLAG])