Skip to main content

hashiverse_server_lib/server/kademlia/
mod.rs

1//! # Server-side Kademlia routing table
2//!
3//! The DHT data structure the server uses to answer `BootstrapV1` and
4//! `AnnounceV1` queries and to pick candidate peers for post-bundle lookups —
5//! per-bit buckets, freshness-based eviction, and XOR-distance iteration.
6
7pub mod kademlia;