From 96101a1231a4ddfeb40fd738a24e108a3a904048 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Thu, 28 Jan 2010 22:18:41 +0100 Subject: Global renames due to project rename to libimobiledevice --- dev/afccheck.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'dev/afccheck.c') diff --git a/dev/afccheck.c b/dev/afccheck.c index 569acf1..b4d8910 100644 --- a/dev/afccheck.c +++ b/dev/afccheck.c @@ -24,9 +24,9 @@ #include #include -#include -#include -#include +#include +#include +#include #define BUFFER_SIZE 20000 #define NB_THREADS 10 @@ -53,7 +53,7 @@ static void check_afc(gpointer data) buf[i] = ((param *) data)->id * i; } - //now writes buffer on iphone + //now writes buffer on device uint64_t file = 0; char path[50]; sprintf(path, "/Buf%i", ((param *) data)->id); @@ -91,30 +91,30 @@ static void check_afc(gpointer data) int main(int argc, char *argv[]) { lockdownd_client_t client = NULL; - iphone_device_t phone = NULL; + idevice_t phone = NULL; GError *err; uint16_t port = 0; afc_client_t afc = NULL; if (argc > 1 && !strcasecmp(argv[1], "--debug")) { - iphone_set_debug_level(1); + idevice_set_debug_level(1); } else { - iphone_set_debug_level(0); + idevice_set_debug_level(0); } - 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; } if (LOCKDOWN_E_SUCCESS != lockdownd_client_new_with_handshake(phone, &client, "afccheck")) { - iphone_device_free(phone); + idevice_free(phone); return 1; } if (LOCKDOWN_E_SUCCESS == lockdownd_start_service(client, "com.apple.afc", &port) && !port) { lockdownd_client_free(client); - iphone_device_free(phone); + idevice_free(phone); fprintf(stderr, "Something went wrong when starting AFC."); return 1; } @@ -140,7 +140,7 @@ int main(int argc, char *argv[]) } lockdownd_client_free(client); - iphone_device_free(phone); + idevice_free(phone); return 0; } -- cgit v1.1-32-gdbae