| 355 | } find_domain_ctx; |
| 356 | |
| 357 | static int find_domain(void *baton, md_reg_t *reg, md_t *md) |
| 358 | { |
| 359 | find_domain_ctx *ctx = baton; |
| 360 | |
| 361 | (void)reg; |
| 362 | if (md_contains(md, ctx->domain, 0)) { |
| 363 | ctx->md = md; |
| 364 | return 0; |
| 365 | } |
| 366 | return 1; |
| 367 | } |
| 368 | |
| 369 | md_t *md_reg_find(md_reg_t *reg, const char *domain, apr_pool_t *p) |
| 370 | { |
nothing calls this directly
no test coverage detected