diff --git a/frida_core/src/linux_tun.rs b/frida_core/src/linux_tun.rs index ae9d5c2..ffbcb03 100644 --- a/frida_core/src/linux_tun.rs +++ b/frida_core/src/linux_tun.rs @@ -23,11 +23,11 @@ pub fn create() -> (DeviceReader, DeviceWriter) { } pub struct DeviceWriter { - writer: Tun + writer: Arc } pub struct DeviceReader { - reader: Tun + reader: Arc } impl DeviceWriter {