protocol-core 0.3.12

Reusable mesh protocol framing, sync, and repair primitives.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! General-purpose mesh protocol framing and sync primitives.
//!
//! This crate intentionally contains only transport-agnostic, pure logic:
//! frame typing, repair request/response encoding, attachment chunk framing,
//! device sync manifest/chunk/ack handling, and reliable delivery/repair planning.

pub mod delivery;
pub mod device_sync;
mod error;
pub mod repair_peer;

pub use error::ProtocolError;