| 192 | } |
| 193 | |
| 194 | static apr_status_t on_init_authz_resp(md_acme_req_t *req, void *baton) |
| 195 | { |
| 196 | md_json_t *jpayload; |
| 197 | |
| 198 | (void)baton; |
| 199 | jpayload = md_json_create(req->p); |
| 200 | return md_acme_req_body_init(req, jpayload); |
| 201 | } |
| 202 | |
| 203 | static apr_status_t authz_http_set(md_acme_t *acme, apr_pool_t *p, const apr_table_t *hdrs, |
| 204 | md_json_t *body, void *baton) |
nothing calls this directly
no test coverage detected