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

Function md_reg_find

modules/md/md_reg.c:369–381  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

367}
368
369md_t *md_reg_find(md_reg_t *reg, const char *domain, apr_pool_t *p)
370{
371 find_domain_ctx ctx;
372
373 ctx.domain = domain;
374 ctx.md = NULL;
375
376 md_reg_do(find_domain, &ctx, reg, p);
377 if (ctx.md) {
378 state_init(reg, p, ctx.md);
379 }
380 return ctx.md;
381}
382
383typedef struct {
384 const md_t *md_checked;

Callers

nothing calls this directly

Calls 2

md_reg_doFunction · 0.85
state_initFunction · 0.85

Tested by

no test coverage detected