From 75cd32c166aee626fb331cbf1d8e7d0d42618bc3 Mon Sep 17 00:00:00 2001 From: Jackson Coxson Date: Thu, 20 Feb 2025 17:28:24 -0700 Subject: [PATCH] Add note about lockdown client requirement for mobile image mounter --- idevice/src/mounter.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/idevice/src/mounter.rs b/idevice/src/mounter.rs index 677d52c..048e99a 100644 --- a/idevice/src/mounter.rs +++ b/idevice/src/mounter.rs @@ -5,6 +5,9 @@ use openssl::sha::Sha384; use crate::{lockdownd::LockdowndClient, tss::TSSRequest, Idevice, IdeviceError, IdeviceService}; +/// Manages mounted images on the idevice. +/// NOTE: A lockdown client must be established and queried after establishing a mounter client, or +/// the device will stop responding to requests. pub struct ImageMounter { idevice: Idevice, }