diff options
author | Stefan Eissing <icing@apache.org> | 2021-02-22 15:11:09 +0100 |
---|---|---|
committer | Stefan Eissing <icing@apache.org> | 2021-02-22 15:11:09 +0100 |
commit | 309e0838934e8a1f94fca24a7a3881f5bc5a3af0 (patch) | |
tree | 3a36b5551b91e75d37730e764f9ff229d5c5f8a3 /modules/http2/h2_headers.h | |
parent | mod_http2: Fix workers synchronization on pchild cleanup. (diff) | |
download | apache2-309e0838934e8a1f94fca24a7a3881f5bc5a3af0.tar.xz apache2-309e0838934e8a1f94fca24a7a3881f5bc5a3af0.zip |
mod_htt2, synch with changes from github module version:
- logio: improvements to reporting of sent bytes for http2 responses
- directive H2OutputBuffering, controls if any output should be sent immediately.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1886792 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/http2/h2_headers.h')
-rw-r--r-- | modules/http2/h2_headers.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/http2/h2_headers.h b/modules/http2/h2_headers.h index 46bbab9c3f..3f6ecd07ae 100644 --- a/modules/http2/h2_headers.h +++ b/modules/http2/h2_headers.h @@ -81,4 +81,9 @@ h2_headers *h2_headers_die(apr_status_t type, int h2_headers_are_response(h2_headers *headers); +/** + * Give the number of bytes of all contained header strings. + */ +apr_size_t h2_headers_length(h2_headers *headers); + #endif /* defined(__mod_h2__h2_headers__) */ |