summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@netsurf-browser.org>2006-08-17 09:18:50 +0000
committerDaniel Silverstone <dsilvers@netsurf-browser.org>2006-08-17 09:18:50 +0000
commit0acecb4de2c098bf629c226a78f63a64ba8ec7bb (patch)
tree778060c547953b76e66f2589847d0a9cddb16a14
parent8ab966398f67b7945f4d08ac1911beb0abd30657 (diff)
downloadnetsurf-0acecb4de2c098bf629c226a78f63a64ba8ec7bb.tar.gz
netsurf-0acecb4de2c098bf629c226a78f63a64ba8ec7bb.tar.bz2
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
-rw-r--r--desktop/options.c2
1 files changed, 1 insertions, 1 deletions
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.