summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/libiphone/libiphone.h1
-rw-r--r--src/lockdown.h1
2 files changed, 1 insertions, 1 deletions
diff --git a/include/libiphone/libiphone.h b/include/libiphone/libiphone.h
index e4500f0..32d47d3 100644
--- a/include/libiphone/libiphone.h
+++ b/include/libiphone/libiphone.h
@@ -84,6 +84,7 @@ iphone_error_t iphone_free_device ( iphone_device_t device );
84 84
85 85
86//lockdownd related functions 86//lockdownd related functions
87iphone_error_t lockdownd_get_device_uid(iphone_lckd_client_t control, char **uid);
87iphone_error_t iphone_lckd_new_client ( iphone_device_t device, iphone_lckd_client_t *client ); 88iphone_error_t iphone_lckd_new_client ( iphone_device_t device, iphone_lckd_client_t *client );
88iphone_error_t iphone_lckd_free_client( iphone_lckd_client_t client ); 89iphone_error_t iphone_lckd_free_client( iphone_lckd_client_t client );
89 90
diff --git a/src/lockdown.h b/src/lockdown.h
index 8b4f27c..91bcc77 100644
--- a/src/lockdown.h
+++ b/src/lockdown.h
@@ -47,7 +47,6 @@ iphone_lckd_client_t new_lockdownd_client(iphone_device_t phone);
47iphone_error_t lockdownd_hello(iphone_lckd_client_t control); 47iphone_error_t lockdownd_hello(iphone_lckd_client_t control);
48iphone_error_t lockdownd_generic_get_value(iphone_lckd_client_t control, const char *req_key, const char *req_string, 48iphone_error_t lockdownd_generic_get_value(iphone_lckd_client_t control, const char *req_key, const char *req_string,
49 char **value); 49 char **value);
50iphone_error_t lockdownd_get_device_uid(iphone_lckd_client_t control, char **uid);
51iphone_error_t lockdownd_get_device_public_key(iphone_lckd_client_t control, char **public_key); 50iphone_error_t lockdownd_get_device_public_key(iphone_lckd_client_t control, char **public_key);
52 51
53iphone_error_t lockdownd_gen_pair_cert(char *public_key_b64, char **device_cert_b64, char **host_cert_b64, 52iphone_error_t lockdownd_gen_pair_cert(char *public_key_b64, char **device_cert_b64, char **host_cert_b64,