summaryrefslogtreecommitdiffstats
path: root/include/http_core.h
diff options
context:
space:
mode:
authorStefan Fritsch <sf@apache.org>2012-11-09 22:17:04 +0100
committerStefan Fritsch <sf@apache.org>2012-11-09 22:17:04 +0100
commitb5a7699209b806193ab273c556a455e9afbf4de5 (patch)
treef1214018673b5c5b25331263afade625efc14fe7 /include/http_core.h
parentxforms (diff)
downloadapache2-b5a7699209b806193ab273c556a455e9afbf4de5.tar.xz
apache2-b5a7699209b806193ab273c556a455e9afbf4de5.zip
Make HttpProtocol accept a range of allowed versions.
Bump MMN git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1407643 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/http_core.h')
-rw-r--r--include/http_core.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/include/http_core.h b/include/http_core.h
index bb1102aa83..ca480f01a2 100644
--- a/include/http_core.h
+++ b/include/http_core.h
@@ -664,10 +664,9 @@ typedef struct {
#define AP_TRACE_EXTENDED 2
int trace_enable;
-#define AP_HTTP09_UNSET 0
-#define AP_HTTP09_ENABLE 1
-#define AP_HTTP09_DISABLE 2
- char http09_enable;
+#define AP_HTTP_VERSION_UNSET 0
+ uint16_t min_http_version;
+ uint16_t max_http_version;
} core_server_config;