mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-05 14:59:03 +00:00
Fixed: Compilation with old libcurl versions
This commit is contained in:
parent
e1b005d25b
commit
31b18fdd58
1 changed files with 3 additions and 0 deletions
|
@ -2092,7 +2092,10 @@ namespace NLGUI
|
|||
MultiCurl = curl_multi_init();
|
||||
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);
|
||||
}
|
||||
RunningCurls = 0;
|
||||
|
|
Loading…
Reference in a new issue