fix(connector.py): fix hanging ACK double check in send_hello()
This commit is contained in:
@@ -156,7 +156,7 @@ class Connector:
|
||||
hello_message: Message = Message.hello(self.mac_address)
|
||||
acknowledged: bool = False
|
||||
while not acknowledged:
|
||||
self.send(hello_message.to_bytes())
|
||||
self.send(hello_message.to_bytes(), no_check_ack=True)
|
||||
self.logger.debug("[.] Hello message sent, waiting for ACK...")
|
||||
acknowledged = self._check_ack()
|
||||
if not acknowledged:
|
||||
|
||||
Reference in New Issue
Block a user