From 37e4514427f0bd687a1f3a2a3411e0be42f93df8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Frosteg=C3=A5rd?= Date: Thu, 8 Feb 2024 10:08:31 +0100 Subject: [PATCH] udp: change default max_response_peers to 30 --- crates/udp/src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/udp/src/config.rs b/crates/udp/src/config.rs index d193cc5..7c209a6 100644 --- a/crates/udp/src/config.rs +++ b/crates/udp/src/config.rs @@ -152,7 +152,7 @@ impl Default for ProtocolConfig { fn default() -> Self { Self { max_scrape_torrents: 70, - max_response_peers: 50, + max_response_peers: 30, peer_announce_interval: 60 * 15, } }