net-mesh 0.23.0

High-performance, schema-agnostic, backend-agnostic event bus
Documentation
//! Layer 6: Subprotocols for Net.
//!
//! Formalizes the `subprotocol_id: u16` field in the Net header. Provides
//! a registry mapping IDs to handler metadata, version negotiation between
//! peers, and capability-aware routing via tags.
//!
//! Opaque forwarding is the default — nodes that don't understand a
//! subprotocol forward packets without inspecting the payload.

mod descriptor;
pub mod migration_handler;
mod negotiation;
mod registry;
pub mod stream_window;

/// Subprotocol ID for negotiation messages.
pub const SUBPROTOCOL_NEGOTIATION: u16 = 0x0600;

pub use descriptor::{SubprotocolDescriptor, SubprotocolVersion, MANIFEST_ENTRY_SIZE};
pub use migration_handler::{
    EnvelopeUnsealFn, FailureCallback, MigrationHandlerHooks, MigrationIdentityContext,
    MigrationSubprotocolHandler, OutboundMigrationMessage, PostRestoreCallback, PreCleanupCallback,
    ReadinessCallback,
};
pub use negotiation::{negotiate, ManifestEntry, NegotiatedSet, SubprotocolManifest};
pub use registry::SubprotocolRegistry;
pub use stream_window::{StreamWindow, SUBPROTOCOL_STREAM_WINDOW};