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

Function md_create

modules/md/md_core.c:198–207  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

196}
197
198md_t *md_create(apr_pool_t *p, apr_array_header_t *domains)
199{
200 md_t *md;
201
202 md = md_create_empty(p);
203 md->domains = md_array_str_compact(p, domains, 0);
204 md->name = APR_ARRAY_IDX(md->domains, 0, const char *);
205
206 return md;
207}
208
209/**************************************************************************************************/
210/* lifetime */

Callers 2

md_config_sec_startFunction · 0.85
md_config_set_namesFunction · 0.85

Calls 2

md_create_emptyFunction · 0.85
md_array_str_compactFunction · 0.85

Tested by

no test coverage detected