summaryrefslogtreecommitdiffstats
path: root/tools/idevicedebugserverproxy.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/idevicedebugserverproxy.c')
-rw-r--r--tools/idevicedebugserverproxy.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/tools/idevicedebugserverproxy.c b/tools/idevicedebugserverproxy.c
index e99d0bf..338a3c0 100644
--- a/tools/idevicedebugserverproxy.c
+++ b/tools/idevicedebugserverproxy.c
@@ -69,12 +69,16 @@ static void print_usage(int argc, char **argv)
69 69
70 name = strrchr(argv[0], '/'); 70 name = strrchr(argv[0], '/');
71 printf("Usage: %s [OPTIONS] <PORT>\n", (name ? name + 1: argv[0])); 71 printf("Usage: %s [OPTIONS] <PORT>\n", (name ? name + 1: argv[0]));
72 printf("Proxy debugserver connection from device to a local socket at PORT.\n\n"); 72 printf("\n");
73 printf("Proxy debugserver connection from device to a local socket at PORT.\n");
74 printf("\n");
75 printf("OPTIONS:\n");
73 printf(" -d, --debug\t\tenable communication debugging\n"); 76 printf(" -d, --debug\t\tenable communication debugging\n");
74 printf(" -u, --udid UDID\ttarget specific device by UDID\n"); 77 printf(" -u, --udid UDID\ttarget specific device by UDID\n");
75 printf(" -h, --help\t\tprints usage information\n"); 78 printf(" -h, --help\t\tprints usage information\n");
76 printf("\n"); 79 printf("\n");
77 printf("Homepage: <" PACKAGE_URL ">\n"); 80 printf("Homepage: <" PACKAGE_URL ">\n");
81 printf("Bug Reports: <" PACKAGE_BUGREPORT ">\n");
78} 82}
79 83
80static void *thread_device_to_client(void *data) 84static void *thread_device_to_client(void *data)