Little fix due to my dumbness

modified:   frida_core/src/linux_tun.rs
This commit is contained in:
Michael Wain 2024-12-09 02:05:24 +03:00
parent a1852140d3
commit 04660213e3

View File

@ -23,11 +23,11 @@ pub fn create() -> (DeviceReader, DeviceWriter) {
} }
pub struct DeviceWriter { pub struct DeviceWriter {
writer: Tun writer: Arc<Tun>
} }
pub struct DeviceReader { pub struct DeviceReader {
reader: Tun reader: Arc<Tun>
} }
impl DeviceWriter { impl DeviceWriter {