Changes to be committed:
Some checks failed
gitea/Frida-android-native/pipeline/head There was a failure building this commit

modified:   src/client.rs
	modified:   src/main.rs
This commit is contained in:
Michael Wain 2024-10-12 04:33:21 +03:00
parent 0df1ec2133
commit 47652dcb9d
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
use crossbeam_channel::unbounded;
use socket2::SockAddr;
use tokio::{net::UdpSocket, sync::Mutex, io::{BufReader, BufWriter, AsyncWriteExt, AsyncReadExt}, fs::File};
use tokio_util::sync::CancellationToken;
use base64::prelude::*;
use log::{error, info, warn};
use std::sync::Arc;

View File

@ -23,7 +23,7 @@ mod client;
mod udp;
mod mobile;
static TUN_QUIT: tokio::sync::Mutex<Option<tokio_util::sync::CancellationToken>> = tokio::sync::Mutex::new(None);
static TUN_QUIT: std::sync::Mutex<Option<tokio_util::sync::CancellationToken>> = std::sync::Mutex::new(None);
#[bridge]
mod jni {