| 169 | } |
| 170 | |
| 171 | size_t HttpClient::WriteCallback(void* contents, size_t size, size_t nmemb, std::string* s) |
| 172 | { |
| 173 | size_t totalSize = size * nmemb; |
| 174 | s->append((char*)contents, totalSize); |
| 175 | return totalSize; |
| 176 | } |
| 177 | |
| 178 | size_t HttpClient::WriteMemoryCallback(void* contents, size_t size, size_t nmemb, void* userp) |
| 179 | { |
nothing calls this directly
no outgoing calls
no test coverage detected