From c9fe53eb10244759d34adb701580eec4f424887b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Henry?= Date: Wed, 8 Nov 2017 15:48:49 +0100 Subject: [PATCH] P2p: reduce the default value of "expected connections". --- src/node/main/node_config_file.ml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/node/main/node_config_file.ml b/src/node/main/node_config_file.ml index e11c8a887..4115ee1d6 100644 --- a/src/node/main/node_config_file.ml +++ b/src/node/main/node_config_file.ml @@ -55,9 +55,9 @@ and log = { let default_net_limits : P2p.limits = { authentification_timeout = 5. ; - min_connections = 50 ; - expected_connections = 100 ; - max_connections = 200 ; + min_connections = 10 ; + expected_connections = 50 ; + max_connections = 100 ; backlog = 20 ; max_incoming_connections = 20 ; max_download_speed = None ;