From 07a2cc8c5f3bb8bd8a495ec68b919686bc0ee735 Mon Sep 17 00:00:00 2001 From: Martin Szulecki Date: Fri, 24 Jul 2009 16:03:54 +0200 Subject: Improve message when connecting to lockdown fails and fix two comments --- src/ifuse.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/ifuse.c b/src/ifuse.c index b53b8ef..2ca64d2 100644 --- a/src/ifuse.c +++ b/src/ifuse.c @@ -37,7 +37,8 @@ typedef uint32_t uint32; // this annoys me too #include #include -int g_blocksize = 4096; // assume this is the default block size +/* assume this is the default block size */ +int g_blocksize = 4096; iphone_device_t phone = NULL; lockdownd_client_t control = NULL; @@ -428,13 +429,12 @@ void *ifuse_init_jailbroken(struct fuse_conn_info *conn) return ifuse_init_with_service(conn, "com.apple.afc2"); } - static struct fuse_operations ifuse_oper = { .getattr = ifuse_getattr, .statfs = ifuse_statfs, .readdir = ifuse_readdir, .mkdir = ifuse_mkdir, - .rmdir = ifuse_unlink, // AFC uses the same op for both. + .rmdir = ifuse_unlink, .create = ifuse_create, .open = ifuse_open, .read = ifuse_read, @@ -504,9 +504,10 @@ int main(int argc, char *argv[]) return 0; } - if (IPHONE_E_SUCCESS != lockdownd_new_client(phone, &control)) { + if (IPHONE_E_SUCCESS != lockdownd_client_new(phone, &control)) { iphone_free_device(phone); - fprintf(stderr, "Something went in lockdown handshake.\n"); + fprintf(stderr, "Failed to connect to lockdownd service on the device.\n"); + fprintf(stderr, "Try again. If it still fails try rebooting your device.\n"); return 0; } -- cgit v1.1-32-gdbae