chore(release): 0.4.4 #9

Merged
pufereq merged 3 commits from release/0.4.4 into main 2026-03-05 20:06:22 +00:00
2 changed files with 6 additions and 4 deletions
Showing only changes of commit 85553eefc5 - Show all commits

View File

@@ -107,7 +107,7 @@ class Connector:
def send_hello(self) -> None:
"""Send a HELLO message to the server."""
self.logger.debug("[*] Sending HELLO message...")
hello_message: Message = Message.hello(self.mac_address)
hello_message: Message = Message.Control.hello(self.mac_address)
self.send(hello_message)
def close(self) -> None:
@@ -218,7 +218,9 @@ class Connector:
self.on_message(message)
if message.ack_required:
ack_message: Message = Message.ack(message.id)
ack_message: Message = Message.Control.ack(
message.id
)
self.send(ack_message)
self._send_outbound()
except Exception as e: