zlayer-proxy 0.11.11

High-performance reverse proxy with TLS termination and L4/L7 routing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Stream (L4) proxy module for TCP/UDP proxying
//!
//! This module provides raw TCP and UDP proxying capabilities,
//! complementing the HTTP/HTTPS L7 proxying in the main proxy module.

pub mod config;
pub mod registry;
pub mod tcp;
pub mod udp;

pub use config::*;
pub use registry::*;
pub use tcp::*;
pub use udp::*;