hopr-api 1.10.0

Common high-level external and internal API traits used by hopr-lib to implement the HOPR protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Session traits for HOPR node interactions.
//!
//! - `client` — session client operations (establishing outgoing sessions)
//! - `server` — session server operations (processing incoming sessions)

#[cfg(feature = "node-session-client")]
pub mod client;

#[cfg(feature = "node-session-server")]
/// Session server traits for handling incoming sessions.
pub mod server;