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

Function md_config_create_svr

modules/md/mod_md_config.c:241–252  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

239}
240
241void *md_config_create_svr(apr_pool_t *pool, server_rec *s)
242{
243 md_srv_conf_t *conf = (md_srv_conf_t *)apr_pcalloc(pool, sizeof(md_srv_conf_t));
244
245 conf->name = apr_pstrcat(pool, "srv[", CONF_S_NAME(s), "]", NULL);
246 conf->s = s;
247 conf->mc = md_mod_conf_get(pool, 1);
248
249 srv_conf_props_clear(conf);
250
251 return conf;
252}
253
254static void *md_config_merge(apr_pool_t *pool, void *basev, void *addv)
255{

Callers

nothing calls this directly

Calls 2

md_mod_conf_getFunction · 0.85
srv_conf_props_clearFunction · 0.85

Tested by

no test coverage detected