This is an automated email from the ASF dual-hosted git repository.
bcall pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
from 83161881b1 Add an HTTP/2 related rate limiting (#10563)
add 0dfb832ff6 APIs to get the h2 error codes and a plugin to use them
(#10570)
No new revisions were added by this update.
Summary of changes:
doc/admin-guide/plugins/block_errors.en.rst | 73 +++++
doc/admin-guide/plugins/index.en.rst | 4 +
include/ts/ts.h | 36 +++
plugins/Makefile.am | 1 +
plugins/experimental/CMakeLists.txt | 1 +
.../block_errors}/CMakeLists.txt | 8 +-
.../{fq_pacing => block_errors}/Makefile.inc | 6 +-
plugins/experimental/block_errors/block_errors.cc | 306 +++++++++++++++++++++
proxy/http2/Http2Stream.cc | 5 +-
src/api/InkAPI.cc | 50 ++++
10 files changed, 483 insertions(+), 7 deletions(-)
create mode 100644 doc/admin-guide/plugins/block_errors.en.rst
copy plugins/{conf_remap => experimental/block_errors}/CMakeLists.txt (87%)
copy plugins/experimental/{fq_pacing => block_errors}/Makefile.inc (83%)
create mode 100644 plugins/experimental/block_errors/block_errors.cc