Changed: Increase default max curl connections to 5
--HG-- branch : develop
This commit is contained in:
parent
cbe4bf33d6
commit
5369373591
2 changed files with 2 additions and 2 deletions
|
@ -69,7 +69,7 @@ namespace NLGUI
|
||||||
/// Maximum concurrent MultiCurl connections per CGroupHTML instance
|
/// Maximum concurrent MultiCurl connections per CGroupHTML instance
|
||||||
sint32 curlMaxConnections;
|
sint32 curlMaxConnections;
|
||||||
|
|
||||||
SWebOptions(): curlMaxConnections(2)
|
SWebOptions(): curlMaxConnections(5)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -436,7 +436,7 @@ CClientConfig::CClientConfig()
|
||||||
WebIgTrustedDomains.push_back(WebIgMainDomain);
|
WebIgTrustedDomains.push_back(WebIgMainDomain);
|
||||||
WebIgNotifInterval = 10; // time in minutes
|
WebIgNotifInterval = 10; // time in minutes
|
||||||
|
|
||||||
CurlMaxConnections = 2;
|
CurlMaxConnections = 5;
|
||||||
CurlCABundle.clear();
|
CurlCABundle.clear();
|
||||||
|
|
||||||
RingReleaseNotePath = "http://" + WebIgMainDomain + "/releasenotes_ring/index.php";
|
RingReleaseNotePath = "http://" + WebIgMainDomain + "/releasenotes_ring/index.php";
|
||||||
|
|
Loading…
Reference in a new issue