Fixed: Bug when CURLMOPT_MAX_HOST_CONNECTIONS is not supported
This commit is contained in:
parent
f720072e7b
commit
7e7deb34e2
1 changed files with 2 additions and 2 deletions
|
@ -2087,14 +2087,14 @@ namespace NLGUI
|
|||
clearContext();
|
||||
|
||||
MultiCurl = curl_multi_init();
|
||||
#ifdef CURLMOPT_MAX_HOST_CONNECTIONS
|
||||
if (MultiCurl)
|
||||
{
|
||||
#ifdef CURLMOPT_MAX_HOST_CONNECTIONS
|
||||
// added in libcurl 7.30.0
|
||||
curl_multi_setopt(MultiCurl, CURLMOPT_MAX_HOST_CONNECTIONS, options.curlMaxConnections);
|
||||
#endif
|
||||
curl_multi_setopt(MultiCurl, CURLMOPT_PIPELINING, 1);
|
||||
}
|
||||
#endif
|
||||
RunningCurls = 0;
|
||||
_CurlWWW = NULL;
|
||||
|
||||
|
|
Loading…
Reference in a new issue