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

Function md_http_HEAD_create

modules/md/md_http.c:304–313  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

302}
303
304apr_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
315apr_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,

Callers 1

md_http_HEAD_performFunction · 0.85

Calls 1

req_createFunction · 0.85

Tested by

no test coverage detected