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, }