MCPcopy Create free account
hub / github.com/FastFlowLM/FastFlowLM / curl_write_cb

Function curl_write_cb

src/include/update.hpp:238–242  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

236}
237#else
238static size_t curl_write_cb(char* ptr, size_t size, size_t nmemb, void* userdata) {
239 auto* out = static_cast<std::string*>(userdata);
240 out->append(ptr, size * nmemb);
241 return size * nmemb;
242}
243
244// FastFlowLM/FastFlowLM (non-Windows)
245static std::optional<std::string> http_get_latest_tag_from_github(bool& timed_out) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected