mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
bug 648570: increase http idle pconn pool from 30 to 256 on desktop. r=jduell
--HG-- extra : rebase_source : 69818fd62f5dfd71cebdb717f686d88b790d32a5
This commit is contained in:
parent
c1ace42ab7
commit
27fa300dd6
@ -700,8 +700,11 @@ pref("network.http.proxy.keep-alive", true);
|
||||
// the packet is lost or delayed on the route.
|
||||
pref("network.http.keep-alive.timeout", 115);
|
||||
|
||||
// limit the absolute number of http connections.
|
||||
pref("network.http.max-connections", 30);
|
||||
// Limit the absolute number of http connections.
|
||||
// Note: the socket transport service will clamp the number below 256 if the OS
|
||||
// cannot allocate that many FDs, and it also always tries to reserve up to 250
|
||||
// file descriptors for things other than sockets.
|
||||
pref("network.http.max-connections", 256);
|
||||
|
||||
// limit the absolute number of http connections that can be established per
|
||||
// host. if a http proxy server is enabled, then the "server" is the proxy
|
||||
|
Loading…
Reference in New Issue
Block a user