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

Function md_http_GET_create

modules/md/md_http.c:293–302  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

291}
292
293apr_status_t md_http_GET_create(md_http_request_t **preq, md_http_t *http, const char *url,
294 struct apr_table_t *headers)
295{
296 md_http_request_t *req;
297 apr_status_t rv;
298
299 rv = req_create(&req, http, "GET", url, headers);
300 *preq = (APR_SUCCESS == rv)? req : NULL;
301 return rv;
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)

Callers 1

md_http_GET_performFunction · 0.85

Calls 1

req_createFunction · 0.85

Tested by

no test coverage detected