| 342 | } |
| 343 | |
| 344 | static size_t WriteCallback(void *contents, size_t size, size_t nmemb, |
| 345 | void *userp) { |
| 346 | ((std::string *)userp)->append((char *)contents, size * nmemb); |
| 347 | return size * nmemb; |
| 348 | } |
| 349 | |
| 350 | static int getNextRequestId() { return request_id_counter_++; } |
| 351 |
nothing calls this directly
no outgoing calls
no test coverage detected