diff options
| author | 2008-12-13 12:21:03 +0100 | |
|---|---|---|
| committer | 2008-12-13 12:21:03 +0100 | |
| commit | 3fdd24aea06a9bf38d9d34fb8bccbb7023ed3100 (patch) | |
| tree | 1080d26eca01c885efb33f3f98821a981a25e8b4 /dev/lckdclient.c | |
| parent | 3d8ba053deeacd74e621469d3d45d1db38ee411a (diff) | |
| download | libplist-3fdd24aea06a9bf38d9d34fb8bccbb7023ed3100.tar.gz libplist-3fdd24aea06a9bf38d9d34fb8bccbb7023ed3100.tar.bz2  | |
Fork libiphone and remove anything non plist specific.
Update library and make related files acordingly .
Diffstat (limited to 'dev/lckdclient.c')
| -rw-r--r-- | dev/lckdclient.c | 101 | 
1 files changed, 0 insertions, 101 deletions
diff --git a/dev/lckdclient.c b/dev/lckdclient.c deleted file mode 100644 index c96f052..0000000 --- a/dev/lckdclient.c +++ /dev/null @@ -1,101 +0,0 @@ -/* - * lckdclient.c - * Rudimentary command line interface to the Lockdown protocol - * - * Copyright (c) 2008 Jonathan Beck All Rights Reserved. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - *  - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU - * Lesser General Public License for more details. - *  - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA  - */ - -#include <stdio.h> -#include <stdlib.h> -#include <string.h> -#include <glib.h> -#include <readline/readline.h> -#include <readline/history.h> - -#include <libiphone/libiphone.h> - - -int main(int argc, char *argv[]) -{ -	int bytes = 0, port = 0, i = 0; -	iphone_lckd_client_t control = NULL; -	iphone_device_t phone = NULL; - -	iphone_set_debug(1); - -	if (IPHONE_E_SUCCESS != iphone_get_device(&phone)) { -		printf("No iPhone found, is it plugged in?\n"); -		return -1; -	} - -	if (IPHONE_E_SUCCESS != iphone_lckd_new_client(phone, &control)) { -		iphone_free_device(phone); -		return -1; -	} - -	char *uid = NULL; -	if (IPHONE_E_SUCCESS == lockdownd_get_device_uid(control, &uid)) { -		printf("DeviceUniqueID : %s\n", uid); -		free(uid); -	} - -	using_history(); -	int loop = TRUE; -	while (loop) { -		char *cmd = readline("> "); -		if (cmd) { - -			gchar **args = g_strsplit(cmd, " ", 0); - -			int len = 0; -			if (args) { -				while (*(args + len)) { -					g_strstrip(*(args + len)); -					len++; -				} -			} - -			if (len > 0) { -				add_history(cmd); -				if (!strcmp(*args, "quit")) -					loop = FALSE; - -				if (!strcmp(*args, "get") && len == 3) { -					char *value = NULL; -					if (IPHONE_E_SUCCESS == lockdownd_generic_get_value(control, *(args + 1), *(args + 2), &value)) -						printf("Success : value = %s\n", value); -					else -						printf("Error\n"); -				} - -				if (!strcmp(*args, "start") && len == 2) { -					int port = 0; -					iphone_lckd_start_service(control, *(args + 1), &port); -					printf("%i\n", port); -				} -			} -			g_strfreev(args); -		} -		free(cmd); -		cmd = NULL; -	} -	clear_history(); -	iphone_lckd_free_client(control); -	iphone_free_device(phone); - -	return 0; -}  | 
