modified: src/client.rs
All checks were successful
gitea/Frida/pipeline/head This commit looks good

This commit is contained in:
Michael Wain 2024-10-19 23:12:01 +03:00
parent c768c35819
commit 06d8bd8c89

View File

@ -47,7 +47,7 @@ pub mod general {
}
pub struct FdReader {
br: File
pub br: File
}
impl ReadWrapper for FdReader {
@ -79,7 +79,7 @@ pub mod general {
}
pub struct FdWriter {
br: File
pub br: File
}
impl WriteWrapper for FdWriter {
@ -316,9 +316,9 @@ pub mod android {
use log::{error, info, warn};
pub struct AndroidClient {
client_config: ClientConfiguration,
fd: i32,
close_token: CancellationToken
pub client_config: ClientConfiguration,
pub fd: i32,
pub close_token: CancellationToken
}
impl VpnClient for AndroidClient {