nexus-net 0.1.0

Low-latency WebSocket, HTTP/1.1, and TLS primitives. Sans-IO, zero-copy, SIMD-accelerated.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Buffer primitives for network protocol parsing and framing.
//!
//! - [`ReadBuf`] — flat byte slab for inbound protocol parsing
//! - [`WriteBuf`] — flat byte slab for outbound protocol frames (sk_buff headroom model)

mod read_buf;
mod write_buf;

pub use read_buf::ReadBuf;
pub use write_buf::WriteBuf;