]> git.ipfire.org Git - thirdparty/apache/httpd.git/commit
*) mod_http2: new configuration directive: ```H2Padding numbits``` to control
authorStefan Eissing <icing@apache.org>
Thu, 7 Mar 2019 09:41:15 +0000 (09:41 +0000)
committerStefan Eissing <icing@apache.org>
Thu, 7 Mar 2019 09:41:15 +0000 (09:41 +0000)
commit9b3dd74c5873bb33b58b5802272a7fb56204ec99
treeae39e482d798471d3075f16c392abf5a204e9359
parent10d302435cc77899f630781d5bd2b1c0fcd7fa0e
  *) mod_http2: new configuration directive: ```H2Padding numbits``` to control
     padding of HTTP/2 payload frames. 'numbits' is a number from 0-8,
     controlling the range of padding bytes added to a frame. The actual number
     added is chosen randomly per frame. This applies to HEADERS, DATA and PUSH_PROMISE
     frames equally. The default continues to be 0, e.g. no padding. [Stefan Eissing]

  *) mod_http2: ripping out all the h2_req_engine internal features now that mod_proxy_http2
     has no more need for it. Optional functions are still declared but no longer implemented.
     While previous mod_proxy_http2 will work with this, it is recommeneded to run the matching
     versions of both modules. [Stefan Eissing]

  *) mod_proxy_http2: changed mod_proxy_http2 implementation and fixed several bugs which
     resolve PR63170. The proxy module does now a single h2 request on the (reused)
     connection and returns. [Stefan Eissing]

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1854963 13f79535-47bb-0310-9956-ffa450edef68
22 files changed:
CHANGES
modules/http2/config2.m4
modules/http2/h2.h
modules/http2/h2_config.c
modules/http2/h2_config.h
modules/http2/h2_conn_io.c
modules/http2/h2_mplx.c
modules/http2/h2_mplx.h
modules/http2/h2_ngn_shed.c [deleted file]
modules/http2/h2_ngn_shed.h [deleted file]
modules/http2/h2_proxy_session.c
modules/http2/h2_proxy_session.h
modules/http2/h2_request.c
modules/http2/h2_session.c
modules/http2/h2_session.h
modules/http2/h2_stream.c
modules/http2/h2_task.c
modules/http2/h2_task.h
modules/http2/h2_version.h
modules/http2/mod_http2.c
modules/http2/mod_http2.h
modules/http2/mod_proxy_http2.c