diff options
author | 2024-10-15 22:09:43 +0200 | |
---|---|---|
committer | 2024-10-15 22:09:43 +0200 | |
commit | 151c680feb6a0775d1b979dbdfca2ac6fdfc8cad (patch) | |
tree | 5ced724a09715e506df91a51fb8a9b7f69b9b057 /src/common.h | |
parent | f4a18ee13dd84d76dd6ebb9b21cd6bce6f37e4ec (diff) | |
download | idevicerestore-151c680feb6a0775d1b979dbdfca2ac6fdfc8cad.tar.gz idevicerestore-151c680feb6a0775d1b979dbdfca2ac6fdfc8cad.tar.bz2 |
Fix iPhone 16 restore from normal mode and add support for RecoveryOS
Diffstat (limited to 'src/common.h')
-rw-r--r-- | src/common.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common.h b/src/common.h index 8085a1a..872d2f9 100644 --- a/src/common.h +++ b/src/common.h @@ -104,7 +104,9 @@ struct idevicerestore_client_t { int nonce_size; int image4supported; plist_t build_manifest; + plist_t firmware_preflight_info; plist_t preflight_info; + plist_t parameters; char* udid; char* srnm; ipsw_archive_t ipsw; @@ -131,6 +133,7 @@ struct idevicerestore_client_t { cond_t device_event_cond; int ignore_device_add_events; plist_t macos_variant; + plist_t recovery_variant; char* restore_variant; char* filesystem; int delete_fs; |