lib/curl/Request: add methods StartIndirect(), StopIndirect()

This commit is contained in:
Max Kellermann
2018-01-11 20:50:16 +01:00
parent 55d1473918
commit edcd0b9913
2 changed files with 27 additions and 0 deletions

View File

@@ -93,6 +93,11 @@ public:
*/
void Start();
/**
* A thread-safe version of Start().
*/
void StartIndirect();
/**
* Unregister this request via CurlGlobal::Remove().
*
@@ -100,6 +105,11 @@ public:
*/
void Stop() noexcept;
/**
* A thread-safe version of Stop().
*/
void StopIndirect();
CURL *Get() noexcept {
return easy.Get();
}