docs(backend_server.py): add TODO in _handle_connection()

This commit is contained in:
2025-08-29 00:30:34 +02:00
parent ac66ce1999
commit b9a7c2bdaf

View File

@@ -158,6 +158,7 @@ class BackendServer:
sent = sock.send(client.outbound) sent = sock.send(client.outbound)
client.outbound = client.outbound[sent:] client.outbound = client.outbound[sent:]
# TODO: wait for ACK from client
except ConnectionResetError as e: except ConnectionResetError as e:
self.logger.error(f"Connection reset by {client}, disconnect: {e}") self.logger.error(f"Connection reset by {client}, disconnect: {e}")
self._disconnect(client) self._disconnect(client)