modified: src/client.rs
Some checks failed
gitea/Frida-android-native/pipeline/head There was a failure building this commit
Some checks failed
gitea/Frida-android-native/pipeline/head There was a failure building this commit
This commit is contained in:
parent
e481f4c2cf
commit
5514074861
@ -122,12 +122,10 @@ pub async fn client_mode(client_config: ClientConfiguration, fd: i32, env: &JNIE
|
||||
|
||||
let s_cipher = cipher_shared.clone();
|
||||
loop {
|
||||
tokio::select! {
|
||||
b = lrx.recv() => {
|
||||
FridaLib::traceFromNative(&env, String::from_utf8_lossy(&b.unwrap()).to_string());
|
||||
if let Ok(bytes) = lrx.try_recv() {
|
||||
FridaLib::traceFromNative(&env, String::from_utf8_lossy(&bytes).to_string());
|
||||
}
|
||||
b = mx.recv() => {
|
||||
let bytes = b.unwrap();
|
||||
if let Ok(bytes) = mx.try_recv() {
|
||||
let s_c = s_cipher.lock().await;
|
||||
|
||||
if s_c.is_some() {
|
||||
@ -148,5 +146,6 @@ pub async fn client_mode(client_config: ClientConfiguration, fd: i32, env: &JNIE
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user