diff options
author | Stefan Eissing <icing@apache.org> | 2015-11-23 20:08:19 +0100 |
---|---|---|
committer | Stefan Eissing <icing@apache.org> | 2015-11-23 20:08:19 +0100 |
commit | b29a5848270115ba7927d3081b6fb54de3e41a8d (patch) | |
tree | 6080e41e94adf46d74ef2774d71f7a495870f4b7 /modules/http2/h2_task_output.h | |
parent | mod_cache: Fix (max-stale with no '=') and enforce (check integers after '=') (diff) | |
download | apache2-b29a5848270115ba7927d3081b6fb54de3e41a8d.tar.xz apache2-b29a5848270115ba7927d3081b6fb54de3e41a8d.zip |
sending trailers out, when seeing EOR bucket and r->trailers_out is non-empty
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1715919 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | modules/http2/h2_task_output.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/http2/h2_task_output.h b/modules/http2/h2_task_output.h index a326c49096..de03890ed6 100644 --- a/modules/http2/h2_task_output.h +++ b/modules/http2/h2_task_output.h @@ -38,6 +38,7 @@ struct h2_task_output { struct h2_task *task; h2_task_output_state_t state; struct h2_from_h1 *from_h1; + int trailers_passed; }; h2_task_output *h2_task_output_create(struct h2_task *task, apr_pool_t *pool); |