Skip to main content

hashiverse_server_lib/server/handlers/
mod.rs

1//! # Inbound RPC handler dispatch
2//!
3//! The async loop that drains the transport's incoming-request queue, decodes
4//! each packet, validates PoW and replay guards, upgrades any improved peer
5//! record, and routes by payload discriminator to the matching per-op handler.
6
7pub mod dispatch;