zebra/zebra-network/src/constants.rs

78 lines
2.8 KiB
Rust
Raw Normal View History

//! Definitions of constants.
use std::time::Duration;
// XXX should these constants be split into protocol also?
use crate::protocol::external::types::*;
use zebra_consensus::parameters::NetworkUpgrade::{self, *};
/// The timeout for requests made to a remote peer.
pub const REQUEST_TIMEOUT: Duration = Duration::from_secs(10);
/// We expect to receive a message from a live peer at least once in this time duration.
2019-10-21 12:16:28 -07:00
///
/// This is the sum of:
/// - the interval between connection heartbeats
/// - the timeout of a possible pending (already-sent) request
/// - the timeout for a possible queued request
/// - the timeout for the heartbeat request itself
///
/// This avoids explicit synchronization, but relies on the peer
/// connector actually setting up channels and these heartbeats in a
/// specific manner that matches up with this math.
pub const LIVE_PEER_DURATION: Duration = Duration::from_secs(60 + 10 + 10 + 10);
/// Regular interval for sending keepalive `Ping` messages to each
/// connected peer.
pub const HEARTBEAT_INTERVAL: Duration = Duration::from_secs(60);
/// Truncate timestamps in outbound address messages to this time interval.
///
2020-07-05 03:58:50 -07:00
/// This is intended to prevent a peer from learning exactly when we received
/// messages from each of our peers.
pub const TIMESTAMP_TRUNCATION_SECONDS: i64 = 30 * 60;
/// The User-Agent string provided by the node.
2020-02-04 22:53:24 -08:00
pub const USER_AGENT: &str = "🦓Zebra v2.0.0-alpha.0🦓";
/// The Zcash network protocol version implemented by this crate.
///
/// This protocol version might be the current version on Mainnet or Testnet,
/// based on where we are in the network upgrade cycle.
pub const CURRENT_VERSION: Version = Version(170_011);
2019-09-13 05:28:38 -07:00
/// The most recent bilateral consensus upgrade implemented by this crate.
///
/// Used to select the minimum supported version for peer connections.
//
// TODO: dynamically choose the minimum network upgrade based on block height.
// See the detailed comment in handshake.rs, where this constant is used.
pub const MIN_NETWORK_UPGRADE: NetworkUpgrade = Heartwood;
/// Magic numbers used to identify different Zcash networks.
pub mod magics {
use super::*;
/// The production mainnet.
pub const MAINNET: Magic = Magic([0x24, 0xe9, 0x27, 0x64]);
/// The testnet.
pub const TESTNET: Magic = Magic([0xfa, 0x1a, 0xf9, 0xbf]);
}
#[cfg(test)]
mod tests {
use super::*;
2019-10-21 12:16:28 -07:00
/// This assures that the `Duration` value we are computing for
/// LIVE_PEER_DURATION actually matches the other const values it
/// relies on.
#[test]
fn ensure_live_peer_duration_value_matches_others() {
let constructed_live_peer_duration =
HEARTBEAT_INTERVAL + REQUEST_TIMEOUT + REQUEST_TIMEOUT + REQUEST_TIMEOUT;
assert_eq!(LIVE_PEER_DURATION, constructed_live_peer_duration);
}
}