summaryrefslogtreecommitdiffstats
path: root/modules/http2/h2_request.h
diff options
context:
space:
mode:
authorStefan Eissing <icing@apache.org>2016-10-03 13:47:45 +0200
committerStefan Eissing <icing@apache.org>2016-10-03 13:47:45 +0200
commit2d12cf2d7a9635961cc3c46cfa7921da9c83d14c (patch)
tree0b2b0b626c7ad316414f65a1e44bdfbaf32d1104 /modules/http2/h2_request.h
parentRebuild. (diff)
downloadapache2-2d12cf2d7a9635961cc3c46cfa7921da9c83d14c.tar.xz
apache2-2d12cf2d7a9635961cc3c46cfa7921da9c83d14c.zip
various fixes, mod_cgid interop, response/trailer forwarding rewritten, stability
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1763158 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/http2/h2_request.h')
-rw-r--r--modules/http2/h2_request.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/modules/http2/h2_request.h b/modules/http2/h2_request.h
index 4a3f3ca285..faf9791194 100644
--- a/modules/http2/h2_request.h
+++ b/modules/http2/h2_request.h
@@ -19,7 +19,6 @@
#include "h2.h"
apr_status_t h2_request_rcreate(h2_request **preq, apr_pool_t *pool,
- int stream_id, int initiated_on,
request_rec *r);
apr_status_t h2_request_add_header(h2_request *req, apr_pool_t *pool,
@@ -30,8 +29,7 @@ apr_status_t h2_request_add_trailer(h2_request *req, apr_pool_t *pool,
const char *name, size_t nlen,
const char *value, size_t vlen);
-apr_status_t h2_request_end_headers(h2_request *req, apr_pool_t *pool,
- int eos, int push);
+apr_status_t h2_request_end_headers(h2_request *req, apr_pool_t *pool, int eos);
h2_request *h2_request_clone(apr_pool_t *p, const h2_request *src);