rings-core 0.20.0

Chord DHT implementation with ICE
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Chord peer-ring model and protocol implementations.

mod action;
mod peer_ring;
mod storage;

pub use action::PeerRingAction;
pub use action::RemoteAction;
pub use action::TopoInfo;
pub use peer_ring::EntryStorage;
pub use peer_ring::PeerRing;

#[cfg(all(not(all(feature = "wasm", target_family = "wasm")), test))]
mod tests;