modified: frida_core/src/android_tun.rs

This commit is contained in:
Michael Wain 2024-12-10 22:35:19 +03:00
parent eb15b4584e
commit 76491e30ff

View File

@ -23,9 +23,9 @@ pub struct DeviceReader {
impl DeviceWriter {
pub async fn write(&mut self, buf: &Vec<u8>) -> Result<usize, Box<dyn Error>> {
if self.writer.is_some() {
/*if self.writer.is_some() {
return Ok(self.writer.unwrap().write(buf).await?);
}
}*/
Ok(0)
}
}