summaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index 42600c3..78c62f7 100644
--- a/src/main.c
+++ b/src/main.c
@@ -57,6 +57,12 @@ int main(int argc, char *argv[]) {
57 return -1; 57 return -1;
58 } 58 }
59 59
60 char *uid = NULL;
61 if (lockdownd_get_device_uid(control, &uid)) {
62 printf("DeviceUniqueID : %s\n", uid);
63 free(uid);
64 }
65
60 port = lockdownd_start_service(control, "com.apple.afc"); 66 port = lockdownd_start_service(control, "com.apple.afc");
61 67
62 if (port) { 68 if (port) {