modified: src/client.rs

This commit is contained in:
Michael Wain 2024-10-19 23:03:47 +03:00
parent d7a4b33683
commit db04909062

View File

@ -311,9 +311,8 @@ pub mod android {
use crate::client::general::{VpnClient, CoreVpnClient}; use crate::client::general::{VpnClient, CoreVpnClient};
use crate::config::ClientConfiguration; use crate::config::ClientConfiguration;
use tokio_util::sync::CancellationToken; use tokio_util::sync::CancellationToken;
use std::fs::File;
use std::os::fd::FromRawFd; use std::os::fd::FromRawFd;
use tokio::{net::UdpSocket, sync::{Mutex, mpsc}, io::{BufReader, BufWriter, AsyncWriteExt, AsyncReadExt}}; use tokio::{net::UdpSocket, sync::{Mutex, mpsc}, io::{BufReader, BufWriter, AsyncWriteExt, AsyncReadExt}, fs::File};
use log::{error, info, warn}; use log::{error, info, warn};
pub struct AndroidClient { pub struct AndroidClient {