diff options
author | Stefan Eissing <icing@apache.org> | 2015-11-09 17:18:52 +0100 |
---|---|---|
committer | Stefan Eissing <icing@apache.org> | 2015-11-09 17:18:52 +0100 |
commit | bb866d5a7a4ca72d5f7ffe0bc15c13980c173a1a (patch) | |
tree | 96d98bc2f8d24437a4e34dd433255de3634926d9 /modules/http2/h2_conn.h | |
parent | some connection state tweaks to appease event mpm (diff) | |
download | apache2-bb866d5a7a4ca72d5f7ffe0bc15c13980c173a1a.tar.xz apache2-bb866d5a7a4ca72d5f7ffe0bc15c13980c173a1a.zip |
task bucket_alloc now created per task pool, spare pools properly destroyed
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1713472 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/http2/h2_conn.h')
-rw-r--r-- | modules/http2/h2_conn.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/http2/h2_conn.h b/modules/http2/h2_conn.h index 88caf1710d..84cf8d83c4 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_worker; /** * Process the connection that is now starting the HTTP/2 @@ -49,6 +48,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 *task, struct h2_worker *worker); +apr_status_t h2_conn_setup(struct h2_task *task, apr_bucket_alloc_t *bucket_alloc, + apr_thread_t *thread, apr_socket_t *socket); #endif /* defined(__mod_h2__h2_conn__) */ |