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

Function ap_add_per_dir_conf

server/core.c:616–622  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

614 */
615
616AP_CORE_DECLARE(void) ap_add_per_dir_conf(server_rec *s, void *dir_config)
617{
618 core_server_config *sconf = ap_get_core_module_config(s->module_config);
619 void **new_space = (void **)apr_array_push(sconf->sec_dir);
620
621 *new_space = dir_config;
622}
623
624AP_CORE_DECLARE(void) ap_add_per_url_conf(server_rec *s, void *url_config)
625{

Callers 1

dirsectionFunction · 0.85

Calls 1

Tested by

no test coverage detected