ombrac 0.7.5

Safe, fast, small TCP over QUIC tunnel using Rust
Documentation
1
2
3
4
5
6
7
8
9
10
//! Ombrac protocol implementation
//!
//! This crate provides the core protocol components:
//! - **codec**: Message encoding/decoding with length-delimited framing
//! - **protocol**: Protocol message definitions and serialization
//! - **reassembly**: UDP packet fragmentation and reassembly

pub mod codec;
pub mod protocol;
pub mod reassembly;