diff options
author | Stefan Eissing <icing@apache.org> | 2015-10-12 16:14:36 +0200 |
---|---|---|
committer | Stefan Eissing <icing@apache.org> | 2015-10-12 16:14:36 +0200 |
commit | 34117ca6001546eb1ed82703c5c6b420a533c38b (patch) | |
tree | 1c21ab8c6de4909f022f64745ca6eb6fa042d087 /modules/http2/h2_io_set.h | |
parent | mod_ssl: performing protocol switch directly after ALPN selection, mod_http2:... (diff) | |
download | apache2-34117ca6001546eb1ed82703c5c6b420a533c38b.tar.xz apache2-34117ca6001546eb1ed82703c5c6b420a533c38b.zip |
when stream gets reset by client, forward info to mplx and fail writes
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1708124 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/http2/h2_io_set.h')
-rw-r--r-- | modules/http2/h2_io_set.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/http2/h2_io_set.h b/modules/http2/h2_io_set.h index a9c6546c70..5e7555af92 100644 --- a/modules/http2/h2_io_set.h +++ b/modules/http2/h2_io_set.h @@ -30,7 +30,6 @@ void h2_io_set_destroy(h2_io_set *set); apr_status_t h2_io_set_add(h2_io_set *set, struct h2_io *io); h2_io *h2_io_set_get(h2_io_set *set, int stream_id); -h2_io *h2_io_set_get_highest_prio(h2_io_set *set); h2_io *h2_io_set_remove(h2_io_set *set, struct h2_io *io); void h2_io_set_remove_all(h2_io_set *set); @@ -44,4 +43,6 @@ typedef int h2_io_set_iter_fn(void *ctx, struct h2_io *io); void h2_io_set_iter(h2_io_set *set, h2_io_set_iter_fn *iter, void *ctx); +h2_io *h2_io_set_pop_highest_prio(h2_io_set *set); + #endif /* defined(__mod_h2__h2_io_set__) */ |