summaryrefslogtreecommitdiffstats
path: root/modules/http2/h2_from_h1.c
diff options
context:
space:
mode:
authorStefan Eissing <icing@apache.org>2016-02-15 18:10:54 +0100
committerStefan Eissing <icing@apache.org>2016-02-15 18:10:54 +0100
commit457462dfddf43b0975dddeeba7d5f60735587101 (patch)
treead33eb9a96e161020e7c8eb9644f35159007af81 /modules/http2/h2_from_h1.c
parentFix typo in comment (diff)
downloadapache2-457462dfddf43b0975dddeeba7d5f60735587101.tar.xz
apache2-457462dfddf43b0975dddeeba7d5f60735587101.zip
first working h2 request engine implementation that does serial processing of proxy requests
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1730572 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/http2/h2_from_h1.c')
-rw-r--r--modules/http2/h2_from_h1.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/modules/http2/h2_from_h1.c b/modules/http2/h2_from_h1.c
index 59ee655d86..8e1f163a2a 100644
--- a/modules/http2/h2_from_h1.c
+++ b/modules/http2/h2_from_h1.c
@@ -49,12 +49,6 @@ h2_from_h1 *h2_from_h1_create(int stream_id, apr_pool_t *pool)
return from_h1;
}
-apr_status_t h2_from_h1_destroy(h2_from_h1 *from_h1)
-{
- from_h1->bb = NULL;
- return APR_SUCCESS;
-}
-
static void set_state(h2_from_h1 *from_h1, h2_from_h1_state_t state)
{
if (from_h1->state != state) {