| 112 | /* acme requests */ |
| 113 | |
| 114 | static 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 | |
| 124 | static apr_status_t http_update_nonce(const md_http_response_t *res, void *data) |
| 125 | { |
no outgoing calls
no test coverage detected