summaryrefslogtreecommitdiffstats
path: root/modules/http2/h2_private.h
diff options
context:
space:
mode:
authorStefan Eissing <icing@apache.org>2016-02-08 17:53:45 +0100
committerStefan Eissing <icing@apache.org>2016-02-08 17:53:45 +0100
commit3567f9f7c669c7b82e69484dc099a375250eff0d (patch)
tree4b45ef808cdabe2aec0d845ec3b5110dac2a0932 /modules/http2/h2_private.h
parentlet proxy handler forward ALPN protocol strings for ssl proxy connections (diff)
downloadapache2-3567f9f7c669c7b82e69484dc099a375250eff0d.tar.xz
apache2-3567f9f7c669c7b82e69484dc099a375250eff0d.zip
new experimental http2 proxy module for h2: and h2c: proxy urls
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1729209 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/http2/h2_private.h')
-rw-r--r--modules/http2/h2_private.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/modules/http2/h2_private.h b/modules/http2/h2_private.h
index eb24fa1a21..383adb1f0e 100644
--- a/modules/http2/h2_private.h
+++ b/modules/http2/h2_private.h
@@ -25,19 +25,4 @@ extern module AP_MODULE_DECLARE_DATA http2_module;
APLOG_USE_MODULE(http2);
-#define H2_HEADER_METHOD ":method"
-#define H2_HEADER_METHOD_LEN 7
-#define H2_HEADER_SCHEME ":scheme"
-#define H2_HEADER_SCHEME_LEN 7
-#define H2_HEADER_AUTH ":authority"
-#define H2_HEADER_AUTH_LEN 10
-#define H2_HEADER_PATH ":path"
-#define H2_HEADER_PATH_LEN 5
-#define H2_CRLF "\r\n"
-
-#define H2_ALEN(a) (sizeof(a)/sizeof((a)[0]))
-
-#define H2MAX(x,y) ((x) > (y) ? (x) : (y))
-#define H2MIN(x,y) ((x) < (y) ? (x) : (y))
-
#endif