actix-proxy-protocol 0.1.0

Actix integration for the PROXY protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Transparent Actix stream wrapper for PROXY protocol headers.

mod acceptor;
mod error;
mod stream;

pub use self::{
    acceptor::{Acceptor, AcceptorService},
    error::{HeaderPolicy, ProxyProtocolError},
    stream::ProxyStream,
};