mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-24 07:19:37 +03:00
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:
parent
8ab966398f
commit
0acecb4de2
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user