| 464 | } |
| 465 | |
| 466 | static 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 | |
| 478 | static apr_status_t md_curl_multi_perform(md_http_t *http, apr_pool_t *p, |
| 479 | md_http_next_req *nextreq, void *baton) |
no test coverage detected