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
10
// PortRedirect Client
//
// License: GPL-3.0-only

pub mod auth;
pub mod metrics;
pub mod metrics_counter;
pub mod server_handler;
pub mod tcp_forwarder;
pub mod run_client;