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

Function md_get_by_dns_overlap

modules/md/md_core.c:177–187  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

175}
176
177md_t *md_get_by_dns_overlap(struct apr_array_header_t *mds, const md_t *md)
178{
179 int i;
180 for (i = 0; i < mds->nelts; ++i) {
181 md_t *o = APR_ARRAY_IDX(mds, i, md_t *);
182 if (strcmp(o->name, md->name) && md_common_name(o, md)) {
183 return o;
184 }
185 }
186 return NULL;
187}
188
189int md_cert_count(const md_t *md)
190{

Callers

nothing calls this directly

Calls 1

md_common_nameFunction · 0.85

Tested by

no test coverage detected