geph4-client 4.99.0-actuallyfive.10

Geph client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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,
) -> anyhow::Result<()> {
    http_local::run(local_listen_addr, proxy_address).await?;
    Ok(())
}