Agent: Fix host/port initialization in TCPConnectionHandler

This commit is contained in:
Mike Salvatore 2022-09-06 14:43:23 -04:00
parent 17356ca079
commit 7edb15d825
1 changed files with 2 additions and 2 deletions

View File

@ -16,8 +16,8 @@ class TCPConnectionHandler(Thread, InterruptableThreadMixin):
bind_port: int,
client_connected: List[Callable[[socket.socket], None]] = [],
):
self.local_port = bind_port
self.local_host = bind_host
self.bind_host = bind_host
self.bind_port = bind_port
self._client_connected = client_connected
super().__init__(name="TCPConnectionHandler", daemon=True)