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

Function find_overlap

modules/md/md_reg.c:389–401  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

387} find_overlap_ctx;
388
389static int find_overlap(void *baton, md_reg_t *reg, md_t *md)
390{
391 find_overlap_ctx *ctx = baton;
392 const char *overlap;
393
394 (void)reg;
395 if ((overlap = md_common_name(ctx->md_checked, md))) {
396 ctx->md = md;
397 ctx->s = overlap;
398 return 0;
399 }
400 return 1;
401}
402
403md_t *md_reg_find_overlap(md_reg_t *reg, const md_t *md, const char **pdomain, apr_pool_t *p)
404{

Callers

nothing calls this directly

Calls 1

md_common_nameFunction · 0.85

Tested by

no test coverage detected