Commit 4c46ca6b authored by Max Kellermann's avatar Max Kellermann

lib/curl/Global: make ReadInfo() private

parent 76a0bf68
...@@ -57,13 +57,6 @@ public: ...@@ -57,13 +57,6 @@ public:
void Add(CURL *easy, CurlRequest &request); void Add(CURL *easy, CurlRequest &request);
void Remove(CURL *easy) noexcept; void Remove(CURL *easy) noexcept;
/**
* Check for finished HTTP responses.
*
* Runs in the I/O thread. The caller must not hold locks.
*/
void ReadInfo() noexcept;
void Assign(curl_socket_t fd, CurlSocket &cs) noexcept { void Assign(curl_socket_t fd, CurlSocket &cs) noexcept {
curl_multi_assign(multi.Get(), fd, &cs); curl_multi_assign(multi.Get(), fd, &cs);
} }
...@@ -85,6 +78,13 @@ public: ...@@ -85,6 +78,13 @@ public:
} }
private: private:
/**
* Check for finished HTTP responses.
*
* Runs in the I/O thread. The caller must not hold locks.
*/
void ReadInfo() noexcept;
void UpdateTimeout(long timeout_ms) noexcept; void UpdateTimeout(long timeout_ms) noexcept;
static int TimerFunction(CURLM *multi, long timeout_ms, static int TimerFunction(CURLM *multi, long timeout_ms,
void *userp) noexcept; void *userp) noexcept;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment