summaryrefslogtreecommitdiffstats
path: root/dev/lckdclient.c
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2010-01-28 22:18:41 +0100
committerGravatar Martin Szulecki2010-01-29 02:16:00 +0100
commit96101a1231a4ddfeb40fd738a24e108a3a904048 (patch)
tree65a8f54354d9acbbba93dac2c8602d07e469482c /dev/lckdclient.c
parent45b88ae3956de089fdc35605910f1359a1d3961c (diff)
downloadlibimobiledevice-96101a1231a4ddfeb40fd738a24e108a3a904048.tar.gz
libimobiledevice-96101a1231a4ddfeb40fd738a24e108a3a904048.tar.bz2
Global renames due to project rename to libimobiledevice
Diffstat (limited to 'dev/lckdclient.c')
-rw-r--r--dev/lckdclient.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/dev/lckdclient.c b/dev/lckdclient.c
index 7b7604e..773de9f 100644
--- a/dev/lckdclient.c
+++ b/dev/lckdclient.c
@@ -26,30 +26,30 @@
#include <readline/readline.h>
#include <readline/history.h>
-#include <libiphone/libiphone.h>
-#include <libiphone/lockdown.h>
+#include <libimobiledevice/libimobiledevice.h>
+#include <libimobiledevice/lockdown.h>
int main(int argc, char *argv[])
{
lockdownd_client_t client = NULL;
- iphone_device_t phone = NULL;
+ idevice_t phone = NULL;
- iphone_set_debug_level(1);
+ idevice_set_debug_level(1);
- if (IPHONE_E_SUCCESS != iphone_device_new(&phone, NULL)) {
- printf("No iPhone found, is it plugged in?\n");
+ if (IDEVICE_E_SUCCESS != idevice_new(&phone, NULL)) {
+ printf("No device found, is it plugged in?\n");
return -1;
}
char *uuid = NULL;
- if (IPHONE_E_SUCCESS == iphone_device_get_uuid(phone, &uuid)) {
+ if (IDEVICE_E_SUCCESS == idevice_get_uuid(phone, &uuid)) {
printf("DeviceUniqueID : %s\n", uuid);
}
if (uuid)
free(uuid);
if (LOCKDOWN_E_SUCCESS != lockdownd_client_new_with_handshake(phone, &client, "lckdclient")) {
- iphone_device_free(phone);
+ idevice_free(phone);
return -1;
}
@@ -109,7 +109,7 @@ int main(int argc, char *argv[])
}
clear_history();
lockdownd_client_free(client);
- iphone_device_free(phone);
+ idevice_free(phone);
return 0;
}