vane 0.9.2

A flow-based reverse proxy with multi-layer routing and programmable pipelines.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* src/layers/l4/legacy/mod.rs */

//! Legacy L4 Transport Configuration System (Preserved Feature)
//!
//! This module contains the traditional priority-based protocol detection
//! configuration system that predates the flow-based architecture.
//!
//! **Status**: Preserved for backward compatibility, no future updates.
//! **Supported Layers**: L4 Transport only (L4+ and L7 do not support legacy config)
//!
//! Users should migrate to flow-based configuration for new deployments.

pub mod tcp;
pub mod udp;

pub use tcp::{LegacyTcpConfig, dispatch_legacy_tcp, validate_tcp_rules};
pub use udp::{LegacyUdpConfig, dispatch_legacy_udp, validate_udp_rules};