diff options
author | Stefan Fritsch <sf@apache.org> | 2012-11-09 22:17:04 +0100 |
---|---|---|
committer | Stefan Fritsch <sf@apache.org> | 2012-11-09 22:17:04 +0100 |
commit | b5a7699209b806193ab273c556a455e9afbf4de5 (patch) | |
tree | f1214018673b5c5b25331263afade625efc14fe7 /include/http_core.h | |
parent | xforms (diff) | |
download | apache2-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.h | 7 |
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; |