modified: src/client.rs

This commit is contained in:
Michael Wain 2024-10-19 22:52:26 +03:00
parent 9a1a1bfa1f
commit df9267ce10

View File

@ -311,7 +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 tokio::{net::UdpSocket, sync::{Mutex, mpsc}, io::{BufReader, BufWriter, AsyncWriteExt, AsyncReadExt}, fs::File}; use std::fs::File;
use tokio::{net::UdpSocket, sync::{Mutex, mpsc}, io::{BufReader, BufWriter, AsyncWriteExt, AsyncReadExt}};
use log::{error, info, warn}; use log::{error, info, warn};
pub struct AndroidClient { pub struct AndroidClient {