portredirect 0.3.0

PortRedirect is a tool that bridges your frontend and backend by redirecting TCP connections through a persistent QUIC connection. It provides both a server (accepting TCP connections and forwarding them via QUIC) and a client (relaying QUIC streams to a TCP destination).
Documentation
1
2
3
4
5
6
7
8
9
// PortRedirect Server
//
// License: GPL-3.0-only

pub mod auth;
pub mod client_handler;
pub mod metrics_counter;
pub mod tcp_forwarder;
pub mod tcp_listener;