sozu-lib 2.0.1

sozu library to build hot reconfigurable HTTP reverse proxies
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! HAProxy PROXY protocol (v1 + v2) state surface.
//!
//! Three distinct session roles compose into the front-end pipeline:
//! `expect` ingests an inbound v2 header and hands off to the downstream
//! protocol; `relay` forwards an existing v2 header verbatim onto a new
//! backend connection; `send` synthesises a v2 header before user bytes.
//! `header` and `parser` own the wire format. Long-form lifecycle:
//! `lib/src/protocol/proxy_protocol/LIFECYCLE.md` (created in this
//! changeset).

pub mod expect;
pub mod header;
pub mod parser;
pub mod relay;
pub mod send;