basic_tcp_proxy 0.3.2

Simple synchronous TCP proxy crate for forwarding TCP connections
Documentation
1
2
3
4
5
6
7
use basic_tcp_proxy::TcpProxy;

fn main() {
    log::info!("starting client");
    let _proxy = TcpProxy::new(9091, "10.200.1.2:9091".parse().unwrap(), false);
    loop {}
}