summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Matt Colyer2009-01-27 21:24:20 -0800
committerGravatar Matt Colyer2009-01-27 21:24:20 -0800
commitf7fbac7803c5cb5934aab58925babc70af4ab848 (patch)
treed40b6f6d38afebd4773cf8b5cbb37b4984965616
parent325470e5f298ed493dd813256571c154bfb71406 (diff)
downloadlibimobiledevice-f7fbac7803c5cb5934aab58925babc70af4ab848.tar.gz
libimobiledevice-f7fbac7803c5cb5934aab58925babc70af4ab848.tar.bz2
Moved lockdownd_get_device_uid to be part of the public API.
-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 );
//lockdownd related functions
+iphone_error_t lockdownd_get_device_uid(iphone_lckd_client_t control, char **uid);
iphone_error_t iphone_lckd_new_client ( iphone_device_t device, iphone_lckd_client_t *client );
iphone_error_t iphone_lckd_free_client( iphone_lckd_client_t client );
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);
iphone_error_t lockdownd_hello(iphone_lckd_client_t control);
iphone_error_t lockdownd_generic_get_value(iphone_lckd_client_t control, const char *req_key, const char *req_string,
char **value);
-iphone_error_t lockdownd_get_device_uid(iphone_lckd_client_t control, char **uid);
iphone_error_t lockdownd_get_device_public_key(iphone_lckd_client_t control, char **public_key);
iphone_error_t lockdownd_gen_pair_cert(char *public_key_b64, char **device_cert_b64, char **host_cert_b64,