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

Function md_acme_POST

modules/md/md_acme.c:435–456  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

433}
434
435apr_status_t md_acme_POST(md_acme_t *acme, const char *url,
436 md_acme_req_init_cb *on_init,
437 md_acme_req_json_cb *on_json,
438 md_acme_req_res_cb *on_res,
439 md_acme_req_err_cb *on_err,
440 void *baton)
441{
442 md_acme_req_t *req;
443
444 assert(url);
445 assert(on_json || on_res);
446
447 md_log_perror(MD_LOG_MARK, MD_LOG_TRACE1, 0, acme->p, "add acme POST: %s", url);
448 req = md_acme_req_create(acme, "POST", url);
449 req->on_init = on_init;
450 req->on_json = on_json;
451 req->on_res = on_res;
452 req->on_err = on_err;
453 req->baton = baton;
454
455 return md_acme_req_send(req, 1);
456}
457
458apr_status_t md_acme_GET(md_acme_t *acme, const char *url,
459 md_acme_req_init_cb *on_init,

Callers 9

md_acme_acct_updateFunction · 0.85
md_acme_acct_deactivateFunction · 0.85
md_acme_agreeFunction · 0.85
md_acme_order_registerFunction · 0.85
cha_http_01_setupFunction · 0.85
cha_tls_alpn_01_setupFunction · 0.85
cha_dns_01_setupFunction · 0.85
acmev2_POST_new_accountFunction · 0.85

Calls 3

md_log_perrorFunction · 0.85
md_acme_req_createFunction · 0.85
md_acme_req_sendFunction · 0.85

Tested by

no test coverage detected