summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2008-02-25 11:10:09 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2008-02-25 11:10:09 +0000
commit11959f49f8591896b8bff3ca15beb1a395a6b112 (patch)
treeb4adcd63f81d189cb1a5d1bf92db9b96b6e7f93d
parent1fc91faff127d468cd18be7c57ea9252adc8890e (diff)
downloadnetsurf-11959f49f8591896b8bff3ca15beb1a395a6b112.tar.gz
netsurf-11959f49f8591896b8bff3ca15beb1a395a6b112.tar.bz2
Set default max fetchers per host option to 2.
svn path=/trunk/netsurf/; revision=3865
-rw-r--r--desktop/options.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/options.c b/desktop/options.c
index 4383dc388..d3eba4c8e 100644
--- a/desktop/options.c
+++ b/desktop/options.c
@@ -135,7 +135,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 = 1;
+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.