| 239 | } |
| 240 | |
| 241 | void *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 | |
| 254 | static void *md_config_merge(apr_pool_t *pool, void *basev, void *addv) |
| 255 | { |
nothing calls this directly
no test coverage detected