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

Function ap_add_file_conf

server/core.c:632–642  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

630}
631
632AP_CORE_DECLARE(void) ap_add_file_conf(apr_pool_t *p, core_dir_config *conf,
633 void *url_config)
634{
635 void **new_space;
636
637 if (!conf->sec_file)
638 conf->sec_file = apr_array_make(p, 2, sizeof(ap_conf_vector_t *));
639
640 new_space = (void **)apr_array_push(conf->sec_file);
641 *new_space = url_config;
642}
643
644AP_CORE_DECLARE(const char *) ap_add_if_conf(apr_pool_t *p,
645 core_dir_config *conf,

Callers 1

filesectionFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected