boss: Use HTTP/1.1 instead of default

This commit is contained in:
Michele Pappalardo 2025-06-08 06:04:29 +02:00
parent a184a04e56
commit 3c65933789
No known key found for this signature in database
GPG key ID: DA81A361969CDD44

View file

@ -502,6 +502,7 @@ namespace iosu
curl_easy_setopt(curl, CURLOPT_HEADERFUNCTION, task_header_callback);
curl_easy_setopt(curl, CURLOPT_HEADERDATA, &(*it));
curl_easy_setopt(curl, CURLOPT_TIMEOUT, 0x3C);
curl_easy_setopt(curl, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
if (IsNetworkServiceSSLDisabled(ActiveSettings::GetNetworkService()))
{
curl_easy_setopt(curl,CURLOPT_SSL_VERIFYPEER,0L);