| 302 | } |
| 303 | |
| 304 | apr_status_t md_http_HEAD_create(md_http_request_t **preq, md_http_t *http, const char *url, |
| 305 | struct apr_table_t *headers) |
| 306 | { |
| 307 | md_http_request_t *req; |
| 308 | apr_status_t rv; |
| 309 | |
| 310 | rv = req_create(&req, http, "HEAD", url, headers); |
| 311 | *preq = (APR_SUCCESS == rv)? req : NULL; |
| 312 | return rv; |
| 313 | } |
| 314 | |
| 315 | apr_status_t md_http_POST_create(md_http_request_t **preq, md_http_t *http, const char *url, |
| 316 | struct apr_table_t *headers, const char *content_type, |
no test coverage detected