summaryrefslogtreecommitdiff
path: root/include/http_core.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/http_core.h')
-rw-r--r--include/http_core.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/http_core.h b/include/http_core.h
index 9028ff012b..dfcb0fc256 100644
--- a/include/http_core.h
+++ b/include/http_core.h
@@ -549,6 +549,14 @@ typedef struct {
/* recursion backstopper */
int redirect_limit; /* maximum number of internal redirects */
int subreq_limit; /* maximum nesting level of subrequests */
+
+ /* TRACE control */
+#define AP_TRACE_UNSET -1
+#define AP_TRACE_DISABLE 0
+#define AP_TRACE_ENABLE 1
+#define AP_TRACE_EXTENDED 2
+ int trace_enable;
+
} core_server_config;
/* for AddOutputFiltersByType in core.c */