| 593 | } |
| 594 | |
| 595 | static void si_val_remote_check(status_ctx *ctx, md_json_t *mdj, const status_info *info) |
| 596 | { |
| 597 | (void)info; |
| 598 | if (ctx->mc->cert_check_name && ctx->mc->cert_check_url) { |
| 599 | const char *prefix = ctx->prefix; |
| 600 | if (!HTML_STATUS(ctx)) { |
| 601 | ctx->prefix = apr_pstrcat(ctx->p, prefix, info->label, NULL); |
| 602 | } |
| 603 | md_json_iterkey(cert_check_iter, ctx, mdj, MD_KEY_CERT, NULL); |
| 604 | if (!HTML_STATUS(ctx)) { |
| 605 | ctx->prefix = prefix; |
| 606 | } |
| 607 | } |
| 608 | } |
| 609 | |
| 610 | static void si_val_stapling(status_ctx *ctx, md_json_t *mdj, const status_info *info) |
| 611 | { |
nothing calls this directly
no test coverage detected