diff --git a/frida_core/src/tun.rs b/frida_core/src/tun.rs index 6e6f623..19f3240 100644 --- a/frida_core/src/tun.rs +++ b/frida_core/src/tun.rs @@ -1,6 +1,9 @@ #[cfg(target_os = "windows")] use crate::win_tun::{DeviceReader, DeviceWriter, create}; +#[cfg(target_os = "linux")] +use crate::linux_tun::{DeviceReader, DeviceWriter, create}; + pub(crate) fn create_tun() -> (DeviceReader, DeviceWriter) { #[cfg(target_os = "windows")] create()