net-mux 1.0.1

An async, credit-based connection multiplexing library on top of Tokio
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Wire protocol: frame definitions and codec.
//!
//! All on-the-wire framing is defined here. Higher layers only deal in
//! [`Frame`] values; the binary format is encapsulated in [`FrameCodec`].

mod codec;
mod frame;
mod header;

pub(crate) use codec::FrameCodec;
pub(crate) use frame::{Flags, Frame};