1 2 3 4 5 6 7 8 9 10 11 12
mod address; mod consts; mod http_client; mod http_local; mod socks5; use std::net::SocketAddr; pub async fn run_tokio(local_listen_addr: SocketAddr, proxy_address: SocketAddr) { http_local::run(local_listen_addr, proxy_address) .await .unwrap() }