zlayer-tunnel 0.10.73

Secure tunneling for ZLayer services
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Tunnel server components
//!
//! This module provides server-side components for managing tunnels,
//! including the [`TunnelRegistry`] for tracking active tunnels and their services,
//! the [`ControlHandler`] for WebSocket control channel management, and the
//! [`ListenerManager`] for dynamic service listeners.

pub mod control;
pub mod listener;
pub mod registry;

pub use control::*;
pub use listener::*;
pub use registry::*;