Trying to fix macos tun
All checks were successful
gitea/Frida/pipeline/head This commit looks good

modified:   .gitignore
	modified:   frida_core/src/mac_tun.rs
This commit is contained in:
Michael Wain 2024-12-10 05:03:03 +03:00
parent 118d48b4fe
commit abc4e9a79a
2 changed files with 3 additions and 2 deletions

3
.gitignore vendored
View File

@ -1,3 +1,4 @@
target
.vscode
.cargo
.cargo
wintun.dll

View File

@ -16,7 +16,7 @@ fn cmd(cmd: &str, args: &[&str]) {
}
pub fn create(cfg: AbstractDevice) -> (DeviceReader, DeviceWriter) {
let iface = Iface::new("tun%d", Mode::Tun).unwrap();
let iface = Iface::new("utun10", Mode::Tun).unwrap();
let mut address = cfg.address.unwrap().to_string();
address.push_str("/24");