Set default max fetchers per host option to 2.

svn path=/trunk/netsurf/; revision=3865
This commit is contained in:
Michael Drake 2008-02-25 11:10:09 +00:00
parent 1fc91faff1
commit 11959f49f8

View File

@ -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.