summaryrefslogtreecommitdiff
path: root/modules/http2/h2_private.h
diff options
context:
space:
mode:
authorStefan Eissing <icing@apache.org>2016-01-05 13:25:48 +0000
committerStefan Eissing <icing@apache.org>2016-01-05 13:25:48 +0000
commitb93c96a6ba89a360710a81974a2a597f80fbd82c (patch)
treee4116862961f1ac36ac3e826cb7ad80861e34e9e /modules/http2/h2_private.h
parent6ef1b748b2ccabe0fb5f24a543d9912c12228c00 (diff)
downloadhttpd-b93c96a6ba89a360710a81974a2a597f80fbd82c.tar.gz
dynamic allocation of transfer file handles used to pass buckets to master connection
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1723069 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/http2/h2_private.h')
-rw-r--r--modules/http2/h2_private.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/http2/h2_private.h b/modules/http2/h2_private.h
index 0ffaf50dc8..0ad02d3b71 100644
--- a/modules/http2/h2_private.h
+++ b/modules/http2/h2_private.h
@@ -35,4 +35,7 @@ APLOG_USE_MODULE(http2);
#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