diff options
author | Stefan Eissing <icing@apache.org> | 2015-11-03 15:33:11 +0100 |
---|---|---|
committer | Stefan Eissing <icing@apache.org> | 2015-11-03 15:33:11 +0100 |
commit | 0b107b1c464cb6ec66d11ac0c4ced0694954d45e (patch) | |
tree | 73b86b9bc075ee5a696e148f031b2afcef06987c /modules/http2/h2_conn.h | |
parent | fixing compile errors due to if assignment warnings (diff) | |
download | apache2-0b107b1c464cb6ec66d11ac0c4ced0694954d45e.tar.xz apache2-0b107b1c464cb6ec66d11ac0c4ced0694954d45e.zip |
rework of output handling on stream/session close, rework of cleartext (http:) output to pass buckets to core filters, splitting of stream/io memory pools for stability and less sync
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1712300 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/http2/h2_conn.h')
-rw-r--r-- | modules/http2/h2_conn.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/http2/h2_conn.h b/modules/http2/h2_conn.h index 49a70db850..752f28a74c 100644 --- a/modules/http2/h2_conn.h +++ b/modules/http2/h2_conn.h @@ -17,7 +17,6 @@ #define __mod_h2__h2_conn__ struct h2_task; -struct h2_task_env; struct h2_worker; /* Process the connection that is now starting the HTTP/2 @@ -52,7 +51,7 @@ h2_mpm_type_t h2_conn_mpm_type(void); conn_rec *h2_conn_create(conn_rec *master, apr_pool_t *stream_pool); -apr_status_t h2_conn_setup(struct h2_task_env *env, struct h2_worker *worker); +apr_status_t h2_conn_setup(struct h2_task *task, struct h2_worker *worker); apr_status_t h2_conn_post(conn_rec *c, struct h2_worker *worker); apr_status_t h2_conn_process(conn_rec *c, apr_socket_t *socket); |