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

Function find_domain

modules/md/md_reg.c:357–367  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

355} find_domain_ctx;
356
357static 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
369md_t *md_reg_find(md_reg_t *reg, const char *domain, apr_pool_t *p)
370{

Callers

nothing calls this directly

Calls 1

md_containsFunction · 0.85

Tested by

no test coverage detected