diff options
author | Stefan Eissing <icing@apache.org> | 2016-02-15 18:10:54 +0100 |
---|---|---|
committer | Stefan Eissing <icing@apache.org> | 2016-02-15 18:10:54 +0100 |
commit | 457462dfddf43b0975dddeeba7d5f60735587101 (patch) | |
tree | ad33eb9a96e161020e7c8eb9644f35159007af81 /modules/http2/h2_from_h1.c | |
parent | Fix typo in comment (diff) | |
download | apache2-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.c | 6 |
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) { |