mirror of
https://github.com/jkcoxson/idevice.git
synced 2026-03-02 14:36:16 +01:00
Unify service naming across crates
This commit is contained in:
@@ -7,7 +7,7 @@ mod errors;
|
||||
pub mod heartbeat;
|
||||
pub mod installation_proxy;
|
||||
pub mod location_simulation;
|
||||
pub mod lockdownd;
|
||||
pub mod lockdown;
|
||||
pub mod logging;
|
||||
pub mod mounter;
|
||||
mod pairing_file;
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
use std::ffi::c_void;
|
||||
|
||||
use idevice::{IdeviceError, IdeviceService, lockdownd::LockdowndClient};
|
||||
use idevice::{IdeviceError, IdeviceService, lockdown::LockdowndClient};
|
||||
|
||||
use crate::{
|
||||
IdeviceErrorCode, IdeviceHandle, IdevicePairingFile, RUNTIME,
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
use std::ffi::c_void;
|
||||
|
||||
use idevice::{IdeviceError, IdeviceService, mounter::ImageMounter};
|
||||
use idevice::{IdeviceError, IdeviceService, mobile_image_mounter::ImageMounter};
|
||||
use plist::Value;
|
||||
|
||||
use crate::{
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
use std::ffi::{CStr, c_void};
|
||||
|
||||
use idevice::{IdeviceError, IdeviceService, sbservices::SpringBoardServicesClient};
|
||||
use idevice::{IdeviceError, IdeviceService, springboardservices::SpringBoardServicesClient};
|
||||
|
||||
use crate::{
|
||||
IdeviceErrorCode, IdeviceHandle, RUNTIME,
|
||||
|
||||
@@ -7,7 +7,7 @@ use log::warn;
|
||||
use opcode::AfcOpcode;
|
||||
use packet::{AfcPacket, AfcPacketHeader};
|
||||
|
||||
use crate::{lockdownd::LockdowndClient, Idevice, IdeviceError, IdeviceService};
|
||||
use crate::{lockdown::LockdowndClient, Idevice, IdeviceError, IdeviceService};
|
||||
|
||||
pub mod errors;
|
||||
pub mod opcode;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
// Jackson Coxson
|
||||
|
||||
use crate::{lockdownd::LockdowndClient, Idevice, IdeviceError, IdeviceService};
|
||||
use crate::{lockdown::LockdowndClient, Idevice, IdeviceError, IdeviceService};
|
||||
|
||||
use byteorder::{BigEndian, WriteBytesExt};
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
// Jackson Coxson
|
||||
// Abstractions for the heartbeat service on iOS
|
||||
|
||||
use crate::{lockdownd::LockdowndClient, Idevice, IdeviceError, IdeviceService};
|
||||
use crate::{lockdown::LockdowndClient, Idevice, IdeviceError, IdeviceService};
|
||||
|
||||
pub struct HeartbeatClient {
|
||||
pub idevice: Idevice,
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
use std::collections::HashMap;
|
||||
|
||||
use crate::{lockdownd::LockdowndClient, Idevice, IdeviceError, IdeviceService};
|
||||
use crate::{lockdown::LockdowndClient, Idevice, IdeviceError, IdeviceService};
|
||||
|
||||
pub struct InstallationProxyClient {
|
||||
pub idevice: Idevice,
|
||||
|
||||
@@ -14,16 +14,16 @@ pub mod heartbeat;
|
||||
pub mod http2;
|
||||
#[cfg(feature = "installation_proxy")]
|
||||
pub mod installation_proxy;
|
||||
pub mod lockdownd;
|
||||
pub mod lockdown;
|
||||
#[cfg(feature = "misagent")]
|
||||
pub mod misagent;
|
||||
#[cfg(feature = "mounter")]
|
||||
pub mod mounter;
|
||||
pub mod mobile_image_mounter;
|
||||
pub mod pairing_file;
|
||||
pub mod provider;
|
||||
#[cfg(feature = "sbservices")]
|
||||
pub mod sbservices;
|
||||
mod sni;
|
||||
#[cfg(feature = "sbservices")]
|
||||
pub mod springboardservices;
|
||||
#[cfg(feature = "tunnel_tcp_stack")]
|
||||
pub mod tcp;
|
||||
#[cfg(feature = "tss")]
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
use log::warn;
|
||||
use plist::Dictionary;
|
||||
|
||||
use crate::{lockdownd::LockdowndClient, Idevice, IdeviceError, IdeviceService};
|
||||
use crate::{lockdown::LockdowndClient, Idevice, IdeviceError, IdeviceService};
|
||||
|
||||
pub struct MisagentClient {
|
||||
pub idevice: Idevice,
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
use log::debug;
|
||||
|
||||
use crate::{lockdownd::LockdowndClient, Idevice, IdeviceError, IdeviceService};
|
||||
use crate::{lockdown::LockdowndClient, Idevice, IdeviceError, IdeviceService};
|
||||
|
||||
#[cfg(feature = "tss")]
|
||||
use crate::tss::TSSRequest;
|
||||
@@ -1,4 +1,4 @@
|
||||
use crate::{lockdownd::LockdowndClient, Idevice, IdeviceError, IdeviceService};
|
||||
use crate::{lockdown::LockdowndClient, Idevice, IdeviceError, IdeviceService};
|
||||
|
||||
pub struct SpringBoardServicesClient {
|
||||
pub idevice: Idevice,
|
||||
@@ -2,7 +2,7 @@
|
||||
// idevice Rust implementation of libimobiledevice's ideviceinfo
|
||||
|
||||
use clap::{Arg, Command};
|
||||
use idevice::{lockdownd::LockdowndClient, pairing_file::PairingFile, IdeviceService};
|
||||
use idevice::{lockdown::LockdowndClient, pairing_file::PairingFile, IdeviceService};
|
||||
|
||||
mod common;
|
||||
|
||||
|
||||
@@ -5,7 +5,8 @@ use std::{io::Write, path::PathBuf};
|
||||
|
||||
use clap::{arg, value_parser, Arg, Command};
|
||||
use idevice::{
|
||||
lockdownd::LockdowndClient, mounter::ImageMounter, pretty_print_plist, IdeviceService,
|
||||
lockdown::LockdowndClient, mobile_image_mounter::ImageMounter, pretty_print_plist,
|
||||
IdeviceService,
|
||||
};
|
||||
|
||||
mod common;
|
||||
|
||||
Reference in New Issue
Block a user