MCPcopy Create free account
hub / github.com/apache/httpd / remove_from_curlm_and_destroy

Function remove_from_curlm_and_destroy

modules/md/md_curl.c:466–476  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

464}
465
466static void remove_from_curlm_and_destroy(md_http_request_t *req, CURLM *curlm)
467{
468 md_curl_internals_t *internals = req->internals;
469
470 assert(curlm);
471 assert(internals);
472 assert(internals->curlm == curlm);
473 curl_multi_remove_handle(curlm, internals->curl);
474 internals->curlm = NULL;
475 md_http_req_destroy(req);
476}
477
478static apr_status_t md_curl_multi_perform(md_http_t *http, apr_pool_t *p,
479 md_http_next_req *nextreq, void *baton)

Callers 1

md_curl_multi_performFunction · 0.85

Calls 1

md_http_req_destroyFunction · 0.85

Tested by

no test coverage detected