| 282 | } |
| 283 | |
| 284 | apr_status_t md_http_multi_perform(md_http_t *http, md_http_next_req *nextreq, void *baton) |
| 285 | { |
| 286 | nextreq_proxy_t proxy; |
| 287 | |
| 288 | proxy.nextreq = nextreq; |
| 289 | proxy.baton = baton; |
| 290 | return http->impl->multi_perform(http, http->pool, proxy_nextreq, &proxy); |
| 291 | } |
| 292 | |
| 293 | apr_status_t md_http_GET_create(md_http_request_t **preq, md_http_t *http, const char *url, |
| 294 | struct apr_table_t *headers) |