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