From 04660213e37433a6a57e716bc7b46c4316c336d0 Mon Sep 17 00:00:00 2001 From: alterdekim Date: Mon, 9 Dec 2024 02:05:24 +0300 Subject: [PATCH] Little fix due to my dumbness modified: frida_core/src/linux_tun.rs --- frida_core/src/linux_tun.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 {