pub fn proxy_tcp_udp(
upstream_tcp: String,
downstream_udp: String,
) -> JoinHandle<()>
Expand description
Connect to TCP upstream server, and forward received bytes to a
downstream UDP socket socket address.
TLS can be enabled with feature tls
(provided by crate rustls
).