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
74
75
76
use libp2p::core::{Multiaddr, PeerId};
use libp2p::identity::{Keypair, PublicKey};
use std::num::NonZeroU16;
use std::time::Duration;
#[derive(Clone)]
pub struct NetworkConfig {
pub listen_addresses: Vec<Multiaddr>,
pub public_addresses: Vec<Multiaddr>,
pub boot_nodes: Vec<(Multiaddr, PeerId)>,
pub node_key: Keypair,
pub node_name: String,
pub enable_mdns: bool,
pub enable_ping: bool,
pub allow_non_globals_in_dht: bool,
pub bitswap_request_timeout: Duration,
pub bitswap_connection_keepalive: Duration,
pub bitswap_receive_limit: NonZeroU16,
}
impl NetworkConfig {
pub fn new() -> Self {
Self {
listen_addresses: vec!["/ip4/0.0.0.0/tcp/0".parse().unwrap()],
public_addresses: vec![],
boot_nodes: vec![],
enable_mdns: true,
enable_ping: 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"),
}
}
pub fn new_local() -> Self {
let mut config = Self::new();
config.listen_addresses = vec!["/ip4/127.0.0.1/tcp/0".parse().unwrap()];
config.allow_non_globals_in_dht = true;
config
}
pub fn public(&self) -> PublicKey {
self.node_key.public()
}
pub fn peer_id(&self) -> PeerId {
self.node_key.public().into_peer_id()
}
}
impl Default for NetworkConfig {
fn default() -> Self {
Self::new()
}
}