This is an automated email from the ASF dual-hosted git repository.
bneradt pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
from e5e3da8973 Address HttpSM::attach_server_session crash (#12325)
add 7a37f57824 Implement HuffmanCodec with LiteSpeed (#12357)
No new revisions were added by this update.
Summary of changes:
NOTICE | 7 +
include/proxy/hdrs/HuffmanCodec.h | 8 +-
lib/CMakeLists.txt | 2 +
{plugins/cachekey => lib/ls-hpack}/CMakeLists.txt | 11 +-
lib/ls-hpack/README.md | 26 +
lib/ls-hpack/huff-tables.h | 136290 +++++++++++++++++++
lib/ls-hpack/lshpack.cc | 246 +
lib/ls-hpack/lshpack.h | 68 +
src/iocore/cache/CMakeLists.txt | 1 +
src/proxy/hdrs/CMakeLists.txt | 13 +-
src/proxy/hdrs/HuffmanCodec.cc | 459 +-
src/proxy/hdrs/XPACK.cc | 14 +-
src/proxy/hdrs/unit_tests/test_Huffmancode.cc | 13 +-
src/proxy/hdrs/unit_tests/test_XPACK.cc | 3 -
src/proxy/hdrs/unit_tests/unit_test_main.cc | 6 -
src/proxy/http2/test_HPACK.cc | 4 -
src/proxy/http2/unit_tests/main.cc | 3 -
src/proxy/http3/test/main_qpack.cc | 1 -
src/traffic_quic/traffic_quic.cc | 1 -
src/traffic_server/traffic_server.cc | 1 -
tests/fuzzing/fuzz_hpack.cc | 2 -
tools/clang-format.sh | 2 +-
tools/cmake-format.sh | 2 +-
tools/git/pre-commit | 4 +-
24 files changed, 136691 insertions(+), 496 deletions(-)
copy {plugins/cachekey => lib/ls-hpack}/CMakeLists.txt (66%)
create mode 100644 lib/ls-hpack/README.md
create mode 100644 lib/ls-hpack/huff-tables.h
create mode 100644 lib/ls-hpack/lshpack.cc
create mode 100644 lib/ls-hpack/lshpack.h