diff options
author | Nikias Bassen | 2009-09-08 20:42:00 +0200 |
---|---|---|
committer | Nikias Bassen | 2009-09-08 20:42:00 +0200 |
commit | a93c66e2bff0065ad2ac93998048f065e51a784c (patch) | |
tree | 8e56c01bdb584f5bbe1d3ef085ed7b68501b7c8a /tools/iproxy.c | |
parent | 8bd54babbe6d3309f78f9d8729d93f83c14d23f5 (diff) | |
download | usbmuxd-a93c66e2bff0065ad2ac93998048f065e51a784c.tar.gz usbmuxd-a93c66e2bff0065ad2ac93998048f065e51a784c.tar.bz2 |
Protocol definition updated.
renamed: usbmuxd_scan() -> usbmuxd_get_device_list()
new: usbmuxd_get_device_by_uuid()
Diffstat (limited to 'tools/iproxy.c')
-rw-r--r-- | tools/iproxy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/iproxy.c b/tools/iproxy.c index f10d701..094ae75 100644 --- a/tools/iproxy.c +++ b/tools/iproxy.c @@ -153,7 +153,7 @@ void *acceptor_thread(void *arg) cdata = (struct client_data*)arg; - if ((count = usbmuxd_scan(&dev_list)) < 0) { + if ((count = usbmuxd_get_device_list(&dev_list)) < 0) { printf("Connecting to usbmuxd failed, terminating.\n"); free(dev_list); return NULL; |