modified: src/client.rs
Some checks failed
gitea/Frida-android-native/pipeline/head There was a failure building this commit

This commit is contained in:
Michael Wain 2024-10-13 21:08:22 +03:00
parent f433df23fa
commit 487f230d59

View File

@ -51,7 +51,7 @@ pub async fn client_mode(client_config: ClientConfiguration, fd: i32, close_toke
let mut buf = vec![0; 1400]; // mtu
loop {
tokio::select! {
_ = cancel_dr.cancelled() => {
_ = dr_cancel.cancelled() => {
info!("Cancellation token has been thrown dev_read_task");
return;
}