From e938351a9e67cacee2c77a110b9f20b25b70796d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Frosteg=C3=A5rd?= Date: Sun, 20 Feb 2022 01:47:03 +0100 Subject: [PATCH] udp: set default max_scrape_torrents=70, max_response_peers=50 --- aquatic_udp/src/config.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aquatic_udp/src/config.rs b/aquatic_udp/src/config.rs index e90e2e7..6e23599 100644 --- a/aquatic_udp/src/config.rs +++ b/aquatic_udp/src/config.rs @@ -123,8 +123,8 @@ pub struct ProtocolConfig { impl Default for ProtocolConfig { fn default() -> Self { Self { - max_scrape_torrents: 255, - max_response_peers: 255, + max_scrape_torrents: 70, + max_response_peers: 50, peer_announce_interval: 60 * 15, } }