| 241 | } |
| 242 | |
| 243 | void md_http_req_destroy(md_http_request_t *req) |
| 244 | { |
| 245 | if (req) { |
| 246 | if (req->internals) { |
| 247 | req->http->impl->req_cleanup(req); |
| 248 | req->internals = NULL; |
| 249 | } |
| 250 | apr_pool_destroy(req->pool); |
| 251 | } |
| 252 | } |
| 253 | |
| 254 | void md_http_set_on_status_cb(md_http_request_t *req, md_http_status_cb *cb, void *baton) |
| 255 | { |
no outgoing calls
no test coverage detected