summaryrefslogtreecommitdiffstats
path: root/python-client/tcprelay.py
diff options
context:
space:
mode:
Diffstat (limited to 'python-client/tcprelay.py')
-rw-r--r--python-client/tcprelay.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python-client/tcprelay.py b/python-client/tcprelay.py
index 3075fcb..c49d708 100644
--- a/python-client/tcprelay.py
+++ b/python-client/tcprelay.py
@@ -68,7 +68,7 @@ class SocketRelay(object):
68class TCPRelay(SocketServer.BaseRequestHandler): 68class TCPRelay(SocketServer.BaseRequestHandler):
69 def handle(self): 69 def handle(self):
70 print "Incoming connection to %d"%self.server.server_address[1] 70 print "Incoming connection to %d"%self.server.server_address[1]
71 mux = usbmux.USBMux("/tmp/usbmuxd") 71 mux = usbmux.USBMux()
72 print "Waiting for devices..." 72 print "Waiting for devices..."
73 if not mux.devices: 73 if not mux.devices:
74 mux.process(1.0) 74 mux.process(1.0)