Skip to content

Commit

Permalink
Merge pull request #2053 from b-zee/feat-relay-circuit-max-bytes-incr…
Browse files Browse the repository at this point in the history
…ease

feat(networking): increase circuit bytes limit
  • Loading branch information
jacderida authored Aug 21, 2024
2 parents 4fdb603 + f29f134 commit 656f64f
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 @@ -598,6 +598,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 656f64f

Please sign in to comment.