1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
use libp2p::core::PeerId;
use libp2p::identity::{Keypair, PublicKey};
use std::num::NonZeroU16;
use std::time::Duration;

/// Network configuration.
#[derive(Clone)]
pub struct NetworkConfig {
    /// Node identity keypair.
    pub node_key: Keypair,
    /// Name of the node. Sent over the wire for debugging purposes.
    pub node_name: String,
    /// Enable mdns.
    pub enable_mdns: bool,
    /// Should we insert non-global addresses into the DHT?
    pub allow_non_globals_in_dht: bool,
    /// Bitswap request timeout.
    pub bitswap_request_timeout: Duration,
    /// Bitswap connection keep alive.
    pub bitswap_connection_keepalive: Duration,
    /// Bitswap inbound requests per peer limit.
    pub bitswap_receive_limit: NonZeroU16,
}

impl NetworkConfig {
    /// Creates a new network configuration.
    pub fn new() -> Self {
        Self {
            enable_mdns: true,
            allow_non_globals_in_dht: false,
            node_key: Keypair::generate_ed25519(),
            node_name: names::Generator::with_naming(names::Name::Numbered)
                .next()
                .unwrap(),
            bitswap_request_timeout: Duration::from_secs(10),
            bitswap_connection_keepalive: Duration::from_secs(10),
            bitswap_receive_limit: NonZeroU16::new(20).expect("20 > 0"),
        }
    }

    /// The public node key.
    pub fn public(&self) -> PublicKey {
        self.node_key.public()
    }

    /// The peer id of the node.
    pub fn peer_id(&self) -> PeerId {
        self.node_key.public().into_peer_id()
    }
}

impl Default for NetworkConfig {
    fn default() -> Self {
        Self::new()
    }
}

impl std::fmt::Debug for NetworkConfig {
    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
        f.debug_struct("NetworkConfig")
            .field("node_key", &self.peer_id().to_string())
            .field("node_name", &self.node_name)
            .field("enable_mdns", &self.enable_mdns)
            .field("allow_non_globals_in_dht", &self.allow_non_globals_in_dht)
            .field("bitswap_request_timeout", &self.bitswap_request_timeout)
            .field(
                "bitswap_connection_keepalive",
                &self.bitswap_connection_keepalive,
            )
            .field("bitswap_receive_limit", &self.bitswap_receive_limit)
            .finish()
    }
}