Skip to content

Commit

Permalink
Merge pull request #2102 from maqi/increase_circuit_bytes_limit
Browse files Browse the repository at this point in the history
feat(networking): increase circuit bytes limit
  • Loading branch information
maqi authored Sep 11, 2024
2 parents 35eb5f6 + 73a21fe commit d636aa2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions sn_networking/src/driver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -602,6 +602,8 @@ impl NetworkBuilder {
max_circuits: 1024, // The total amount of relayed connections at any given moment.
max_circuits_per_peer: 256, // Amount of relayed connections per peer (both dst and src)
circuit_src_rate_limiters: vec![], // No extra rate limiting for now
// We should at least be able to relay packets with chunks etc.
max_circuit_bytes: MAX_PACKET_SIZE as u64,
..Default::default()
};
libp2p::relay::Behaviour::new(peer_id, relay_server_cfg)
Expand Down

0 comments on commit d636aa2

Please sign in to comment.