1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-07 04:02:58 +03:00

fixed segfault in connection shutdown, added accept-push-policy support

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1721547 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stefan Eissing
2015-12-23 14:50:54 +00:00
parent 922612b8eb
commit 93c609224e
6 changed files with 95 additions and 22 deletions

View File

@@ -44,8 +44,7 @@ struct h2_request {
unsigned int chunked : 1; /* iff requst body needs to be forwarded as chunked */
unsigned int eoh : 1; /* iff end-of-headers has been seen and request is complete */
unsigned int body : 1; /* iff this request has a body */
unsigned int push : 1; /* iff server push is possible for this request */
unsigned int push_policy; /* which push policy to use for this request */
const struct h2_config *config;
};