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

Function md_get_by_name

modules/md/md_core.c:153–163  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

151}
152
153md_t *md_get_by_name(struct apr_array_header_t *mds, const char *name)
154{
155 int i;
156 for (i = 0; i < mds->nelts; ++i) {
157 md_t *md = APR_ARRAY_IDX(mds, i, md_t *);
158 if (!strcmp(name, md->name)) {
159 return md;
160 }
161 }
162 return NULL;
163}
164
165md_t *md_get_by_domain(struct apr_array_header_t *mds, const char *domain)
166{

Callers 3

md_status_handlerFunction · 0.85
process_drive_jobFunction · 0.85
find_closest_matchFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected