rama-net 0.3.0

rama network types and utilities
Documentation
1
2
3
4
5
6
7
8
9
//! Http server utility types and services.
//!
//! - [`HttpPeekRouter`] allows you to detect http/1x and h2 traffic. H3 traffic
//!   is not covered by this router as this is done via sidechannel information instead (e.g. ALPN in TLS).

pub mod peek;
pub use peek::{
    HttpPeekRouter, HttpPeekVersion, HttpPrefixedIo, NoHttpRejectError, peek_http_input,
};