diff options
author | Stefan Eissing <icing@apache.org> | 2022-04-04 10:24:09 +0200 |
---|---|---|
committer | Stefan Eissing <icing@apache.org> | 2022-04-04 10:24:09 +0200 |
commit | 4442201e61616a2a75909b26909121f469bfae7c (patch) | |
tree | 63f3ea4cfe577f6892cd704c0ac4f719bc985093 /server/Makefile.in | |
parent | fr doc rebuild. (diff) | |
download | apache2-4442201e61616a2a75909b26909121f469bfae7c.tar.xz apache2-4442201e61616a2a75909b26909121f469bfae7c.zip |
*) core/mod_http/mod_http2:
- adds new meta bucket types REQUEST, RESPONSE and HEADERS to the API.
- adds a new method for setting standard response headers Date and Server
- adds helper methods for formatting parts of HTTP/1.x, like headers and
end chunks for use in non-core parts of the server, e.g. mod_proxy
- splits the HTTP_IN filter into a "generic HTTP" and "specific HTTP/1.x"
filter. The latter one named HTTP1_BODY_IN.
- Uses HTTP1_BODY_IN only for requests with HTTP version <= 1.1
- Removes the chunked input simulation from mod_http2
- adds body_indeterminate flag to request_rec that indicates that a request
body may be present and needs to be read/discarded. This replaces logic
that thinks without Content-Length and Transfer-Encoding, no request
body can exist.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1899547 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/Makefile.in')
-rw-r--r-- | server/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/Makefile.in b/server/Makefile.in index ea11546632..3b25ebcafd 100644 --- a/server/Makefile.in +++ b/server/Makefile.in @@ -14,7 +14,7 @@ LTLIBRARY_SOURCES = \ util_charset.c util_cookies.c util_debug.c util_xml.c \ util_filter.c util_pcre.c util_regex.c $(EXPORTS_DOT_C) \ scoreboard.c error_bucket.c protocol.c core.c request.c ssl.c provider.c \ - eoc_bucket.c eor_bucket.c core_filters.c \ + eoc_bucket.c eor_bucket.c headers_bucket.c core_filters.c \ util_expr_parse.c util_expr_scan.c util_expr_eval.c \ apreq_cookie.c apreq_error.c apreq_module.c \ apreq_module_cgi.c apreq_module_custom.c apreq_param.c \ |