summaryrefslogtreecommitdiff
path: root/include/http_core.h
diff options
context:
space:
mode:
authorStefan Fritsch <sf@apache.org>2012-11-09 21:17:04 +0000
committerStefan Fritsch <sf@apache.org>2012-11-09 21:17:04 +0000
commitb5a7699209b806193ab273c556a455e9afbf4de5 (patch)
treef1214018673b5c5b25331263afade625efc14fe7 /include/http_core.h
parent655875eb8c2fadc85aacdc1700c6e7ea99c8fc7d (diff)
downloadhttpd-b5a7699209b806193ab273c556a455e9afbf4de5.tar.gz
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;