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

Function req_update_nonce

modules/md/md_acme.c:114–122  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

112/* acme requests */
113
114static void req_update_nonce(md_acme_t *acme, apr_table_t *hdrs)
115{
116 if (hdrs) {
117 const char *nonce = apr_table_get(hdrs, "Replay-Nonce");
118 if (nonce) {
119 acme->nonce = apr_pstrdup(acme->p, nonce);
120 }
121 }
122}
123
124static apr_status_t http_update_nonce(const md_http_response_t *res, void *data)
125{

Callers 2

http_update_nonceFunction · 0.85
on_responseFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected