ios-core 0.1.7

High-level device API, pairing transport, and discovery for iOS devices
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Image mounter service – mount Developer Disk Images (DDI).
//!
//! Service: `com.apple.mobile.mobile_image_mounter`
//! Protocol: plist-framed (4-byte BE length prefix, same as lockdown)
//!
//! Reference: go-ios/ios/imagemounter/

pub mod download;
pub mod manifest;
pub mod protocol;
pub mod tss;

pub use download::DdiDownloader;
pub use manifest::BuildManifest;
pub use protocol::{ImageMounterClient, ImageMounterError};