1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-03-12 15:14:12 +00:00

fix: crashes related to curl gh10936 (#7416)

This commit is contained in:
Yat Ho 2025-01-28 06:36:47 +08:00 committed by GitHub
parent f768562421
commit 790bd2f0ab
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -386,6 +386,13 @@ public:
CURL* easy_;
};
// https://github.com/curl/curl/issues/10936
[[nodiscard]] static bool check_curl_gh10936() noexcept
{
auto const version = curl_version_info(CURLVERSION_NOW)->version_num;
return version >= 0x075700 /* 7.87.0 */ && version <= 0x080500 /* 8.5.0 */;
}
static auto constexpr BandwidthPauseMsec = long{ 500 };
static auto constexpr DnsCacheTimeoutSecs = long{ 60 * 60 };
static auto constexpr MaxRedirects = long{ 10 };
@ -393,6 +400,7 @@ public:
bool const curl_verbose = tr_env_key_exists("TR_CURL_VERBOSE");
bool const curl_ssl_verify = !tr_env_key_exists("TR_CURL_SSL_NO_VERIFY");
bool const curl_proxy_ssl_verify = !tr_env_key_exists("TR_CURL_PROXY_SSL_NO_VERIFY");
bool const curl_gh10936 = check_curl_gh10936();
Mediator& mediator;
@ -599,6 +607,11 @@ public:
(void)curl_easy_setopt(e, CURLOPT_HTTP_CONTENT_DECODING, 0L);
(void)curl_easy_setopt(e, CURLOPT_RANGE, range->c_str());
}
if (curl_gh10936)
{
(void)curl_easy_setopt(e, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
}
}
void resumePausedTasks()