Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

[network] fix: always set Kademlia mode to server #14703

Merged
merged 1 commit into from
Aug 3, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 5 additions & 12 deletions client/network/src/discovery.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ use ip_network::IpNetwork;
use libp2p::{
core::{Endpoint, Multiaddr},
kad::{
self,
record::store::{MemoryStore, RecordStore},
GetClosestPeersError, GetRecordOk, Kademlia, KademliaBucketInserts, KademliaConfig,
KademliaEvent, QueryId, QueryResult, Quorum, Record, RecordKey,
Expand Down Expand Up @@ -222,6 +223,9 @@ impl DiscoveryConfig {

let store = MemoryStore::new(local_peer_id);
let mut kad = Kademlia::with_config(local_peer_id, store, config);
// Always set the mode to server, so that any node can accept incoming Kademlia
// requests. Otherwise, the connectivity degrades significantly.
kad.set_mode(Some(kad::Mode::Server));

for (peer_id, addr) in &permanent_addresses {
kad.add_address(peer_id, addr.clone());
Expand Down Expand Up @@ -983,7 +987,7 @@ mod tests {
upgrade,
},
identity::Keypair,
kad, noise,
noise,
swarm::{Executor, Swarm, SwarmBuilder, SwarmEvent},
yamux, Multiaddr,
};
Expand Down Expand Up @@ -1038,17 +1042,6 @@ mod tests {
)
.build();

// Set the Kademlia mode to server so that it can accept incoming requests.
//
// Note: the server mode is set automatically when the node learns its external
// address, but that does not happen in tests => hence we set it manually.
swarm
.behaviour_mut()
.kademlia
.as_mut()
.unwrap()
.set_mode(Some(kad::Mode::Server));

let listen_addr: Multiaddr =
format!("/memory/{}", rand::random::<u64>()).parse().unwrap();

Expand Down