From 9fa86ab7b0fc1f3b3bd6d4e490f5407e2283a4bd Mon Sep 17 00:00:00 2001 From: Jackson Coxson Date: Sat, 22 Mar 2025 12:27:44 -0600 Subject: [PATCH] Box debug proxy ReadWrite connection --- tools/src/debug_proxy.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/src/debug_proxy.rs b/tools/src/debug_proxy.rs index ddab2fc..e5206c5 100644 --- a/tools/src/debug_proxy.rs +++ b/tools/src/debug_proxy.rs @@ -9,7 +9,7 @@ use std::{ use clap::{Arg, Command}; use idevice::{ core_device_proxy::CoreDeviceProxy, debug_proxy::DebugProxyClient, - tunneld::get_tunneld_devices, xpc::XPCDevice, IdeviceService, + tunneld::get_tunneld_devices, xpc::XPCDevice, IdeviceService, ReadWrite, }; use tokio::net::TcpStream; @@ -63,7 +63,7 @@ async fn main() { let pairing_file = matches.get_one::("pairing_file"); let host = matches.get_one::("host"); - let mut dp = if matches.get_flag("tunneld") { + let mut dp: DebugProxyClient> = if matches.get_flag("tunneld") { let socket = SocketAddr::new( IpAddr::from_str("127.0.0.1").unwrap(), idevice::tunneld::DEFAULT_PORT,