Files
unshell/src/protocol/tree/endpoint/mod.rs
T

17 lines
451 B
Rust
Raw Normal View History

2026-04-25 13:34:18 -06:00
//! Protocol-tree endpoint runtime.
//!
//! This module holds the state machine that validates ingress, decides whether a
//! packet should be handled locally or forwarded, and manages hook lifetimes for
//! call/data/fault exchanges.
mod builders;
mod core;
mod hooks;
mod introspection;
mod receive;
pub use core::{
2026-04-25 11:27:29 -06:00
ChildRoute, ConnectionState, Endpoint, EndpointError, EndpointOutcome, Ingress, LeafSpec,
LocalEvent, ProtocolEndpoint,
};