diff options
author | Daniel Ruggeri <druggeri@apache.org> | 2011-07-28 00:24:14 +0200 |
---|---|---|
committer | Daniel Ruggeri <druggeri@apache.org> | 2011-07-28 00:24:14 +0200 |
commit | 0d690871270275ca0f946102fb8808dc69bac7fb (patch) | |
tree | 5930e6aa691c8cd5d00471a974ab6a9287afeb84 /include/http_core.h | |
parent | update xforms (diff) | |
download | apache2-0d690871270275ca0f946102fb8808dc69bac7fb.tar.xz apache2-0d690871270275ca0f946102fb8808dc69bac7fb.zip |
Add AllowOverrideList directive and documentation
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1151654 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/http_core.h')
-rw-r--r-- | include/http_core.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/http_core.h b/include/http_core.h index f3644ad8ab..a41cf9b54f 100644 --- a/include/http_core.h +++ b/include/http_core.h @@ -31,6 +31,7 @@ #include "apr_optional.h" #include "util_filter.h" #include "ap_expr.h" +#include "apr_tables.h" #include "http_config.h" @@ -601,6 +602,9 @@ typedef struct { /** per-dir log config */ struct ap_logconf *log; + /** Table of directives allowed per AllowOverrideList */ + apr_table_t *override_list; + } core_dir_config; /* macro to implement off by default behaviour */ |