hopr_transport_p2p/constants.rs
1/// Connection idle timeout for all protocols used in the swarm.
2pub const HOPR_SWARM_IDLE_CONNECTION_TIMEOUT: std::time::Duration = std::time::Duration::from_secs(300); // 5 minutes
3
4/// P2P protocol identifiers
5pub(crate) const HOPR_HEARTBEAT_PROTOCOL_V_0_1_0: &str = "/hopr/heartbeat/0.1.0";
6pub(crate) const HOPR_TICKET_AGGREGATION_PROTOCOL_V_0_1_0: &str = "/hopr/ticket-aggregation/0.1.0";
7
8// Swarm configuration
9/// The maximum number of concurrently dialed (outbound) peers.
10pub(crate) const HOPR_SWARM_CONCURRENTLY_DIALED_PEER_COUNT: u8 = 255;
11/// The maximum number of concurrently negotiating inbound peers.
12pub(crate) const HOPR_SWARM_CONCURRENTLY_NEGOTIATING_INBOUND_PEER_COUNT: usize = 512;