lib/curl/Easy: add method Unpause()

This commit is contained in:
Max Kellermann 2019-08-19 21:18:59 +02:00
parent ab39f64fc0
commit 8474599ed6
2 changed files with 5 additions and 1 deletions

View File

@ -162,6 +162,10 @@ public:
SetOption(CURLOPT_HTTPPOST, post);
}
bool Unpause() noexcept {
return ::curl_easy_pause(handle, CURLPAUSE_CONT) == CURLE_OK;
}
CurlString Escape(const char *string, int length=0) const noexcept {
return CurlString(curl_easy_escape(handle, string, length));
}

View File

@ -119,7 +119,7 @@ CurlRequest::Resume() noexcept
{
assert(registered);
curl_easy_pause(easy.Get(), CURLPAUSE_CONT);
easy.Unpause();
global.InvalidateSockets();
}