From 0acecb4de2c098bf629c226a78f63a64ba8ec7bb Mon Sep 17 00:00:00 2001 From: Daniel Silverstone Date: Thu, 17 Aug 2006 09:18:50 +0000 Subject: Change max_fetchers_per_host to 2, as the RFC states we SHOULD not hold more than 2 simultaneous connections to a host. Closes #1469511 svn path=/trunk/netsurf/; revision=2854 --- desktop/options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop/options.c b/desktop/options.c index 65d1e25c8..ab23aaebc 100644 --- a/desktop/options.c +++ b/desktop/options.c @@ -99,7 +99,7 @@ int option_max_fetchers = 24; /** Maximum simultaneous active fetchers per host. * (<=option_max_fetchers else it makes no sense */ -int option_max_fetchers_per_host = 5; +int option_max_fetchers_per_host = 2; /** Maximum number of inactive fetchers cached. * The total number of handles netsurf will therefore have open * is this plus option_max_fetchers. -- cgit v1.2.3