diff options
-rw-r--r-- | src/matchbox/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/matchbox/__init__.py b/src/matchbox/__init__.py index de8de41..80b8f4f 100644 --- a/src/matchbox/__init__.py +++ b/src/matchbox/__init__.py @@ -34,7 +34,7 @@ class MatchboxServer(object): while 1: client_socket, address = self.sock.accept() print "connection from: ", address - thread.start_new_thread(self.client_handler, (client_socket,)) + thread.start_new_thread(self.client_handler, (client_socket, address)) def stop_server(self): if self.sock: @@ -43,7 +43,7 @@ class MatchboxServer(object): - def client_handler(self, client_socket): + def client_handler(self, client_socket, client_address): while 1: buffer = client_socket.recv(4096) data = "" |