Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(networking): increase circuit bytes limit #2102

Merged
merged 1 commit into from
Sep 11, 2024
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
2 changes: 2 additions & 0 deletions sn_networking/src/driver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -600,6 +600,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
Loading