diff options
author | 2017-06-08 19:58:25 +0200 | |
---|---|---|
committer | 2017-06-08 19:58:25 +0200 | |
commit | 0c412bad009136ceaf1f212aefdf0ef8bef0fcc2 (patch) | |
tree | b91cde55fb46f0d57337956d0b8333dc13248361 /src/restore.h | |
parent | 1a8921f7d6c89530c3418703574af9083039d4d5 (diff) | |
download | idevicerestore-0c412bad009136ceaf1f212aefdf0ef8bef0fcc2.tar.gz idevicerestore-0c412bad009136ceaf1f212aefdf0ef8bef0fcc2.tar.bz2 |
restore: Move restore_send_kernelcache() to a generic restore_send_component()
Diffstat (limited to 'src/restore.h')
-rw-r--r-- | src/restore.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/restore.h b/src/restore.h index f40100f..e63f6bc 100644 --- a/src/restore.h +++ b/src/restore.h @@ -54,7 +54,7 @@ int restore_handle_progress_msg(struct idevicerestore_client_t* client, plist_t int restore_handle_data_request_msg(struct idevicerestore_client_t* client, idevice_t device, restored_client_t restore, plist_t message, plist_t build_identity, const char* filesystem); int restore_send_nor(restored_client_t restore, struct idevicerestore_client_t* client, plist_t build_identity); int restore_send_root_ticket(restored_client_t restore, struct idevicerestore_client_t* client); -int restore_send_kernelcache(restored_client_t restore, struct idevicerestore_client_t* client, plist_t build_identity); +int restore_send_component(restored_client_t restore, struct idevicerestore_client_t* client, plist_t build_identity, const char *component); int restore_device(struct idevicerestore_client_t* client, plist_t build_identity, const char* filesystem); int restore_open_with_timeout(struct idevicerestore_client_t* client); int restore_send_filesystem(struct idevicerestore_client_t* client, idevice_t device, const char* filesystem); |