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
This commit is contained in:
Daniel Silverstone 2006-08-17 09:18:50 +00:00
parent 8ab966398f
commit 0acecb4de2

View File

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