sozu-lib 0.1.1

sozu library to build hot reconfigurable HTTP reverse proxies
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod http;
pub mod pipe;
pub mod tls;

pub use self::tls::TlsHandshake;
pub use self::pipe::Pipe;
pub use self::http::Http;

#[derive(Debug,Clone,Copy,PartialEq)]
pub enum ProtocolResult {
  Upgrade,
  Continue,
}