This is an automated email from the ASF dual-hosted git repository.

zwoop pushed a change to branch NewAPIMetricsPOC
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


    from e550beb625 Initial cut at a new Metrics API
     add 0a8788abea OpenSSL 3.0 tls autest updates (#9947)
     add a8a706988a build_h3_tools: update for lib64 (#9946)
     add 71a438da5a sni: new hint 'http2_initial_window_size_in' (#9734)
     add 483d7e9db3 Clean up: Remove mgmt/api folder. This was unused code, 
functions were (#9945)
     add 995218619c Converts core ats:: namespace to ts:: (#9950)
     add 5aa2c5b7e0 Check CMakeLists.txt files in RAT (#9955)
     add e3f2368a82 Build prefetch plugin and test in CMake build (#9954)
     add 1b79242e65 more tests for checking rule enforcement (#9936)
     add fc35742d71 Remove obsolete ink_inet_addr function. (#9948)
     add 75c089cc69 Build s3_auth plugin in CMake build (#9962)
     add 9830322a54 Build traffic_crashlog executable in CMake build (#9958)
     add e3eb86c4dd Add parser.cc to header_rewrite sources in CMake (#9957)
     add 5169d0cebf Build TSVConnFD.so and place in correct directory (#9956)
     add 7df910f75e Add libloader plugin to CMake build (#9953)
     add b0028efff3 Build regex_remap plugin in CMake build (#9963)
     add 1cc6f76726 Build binaries for bigobj AuTest (#9965)
     new 1f97374d9a Merge branch 'master' into NewAPIMetricsPOC

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                                         |   4 +-
 CMakeLists.txt                                     |   5 +-
 ci/rat-regex.txt                                   |   2 +-
 configure.ac                                       |   2 -
 doc/admin-guide/files/sni.yaml.en.rst              | 354 +++++++-------
 include/tscore/CryptoHash.h                        |  12 +-
 include/tscore/MD5.h                               |   2 +-
 include/tscore/MMH.h                               |   2 +-
 include/tscore/SHA256.h                            |   2 +-
 include/tscore/ink_config.h.cmake.in               |   1 +
 include/tscore/ink_sock.h                          |   2 -
 iocore/net/P_SNIActionPerformer.h                  |  20 +
 iocore/net/SSLNetVConnection.cc                    |   4 +-
 iocore/net/TLSSNISupport.h                         |   1 +
 iocore/net/YamlSNIConfig.cc                        |   7 +
 iocore/net/YamlSNIConfig.h                         |   2 +
 mgmt/Makefile.am                                   |   2 +-
 mgmt/api/CoreAPIShared.cc                          | 279 -----------
 mgmt/api/CoreAPIShared.h                           |  48 --
 mgmt/api/INKMgmtAPI.cc                             | 527 ---------------------
 mgmt/api/Makefile.am                               |  44 --
 mgmt/api/include/Makefile.am                       |  22 -
 mgmt/api/include/mgmtapi.h                         | 343 --------------
 mgmt/utils/Makefile.am                             |   2 -
 plugins/CMakeLists.txt                             |   4 +
 plugins/esi/CMakeLists.txt                         |  17 +
 plugins/esi/common/CMakeLists.txt                  |  17 +
 plugins/esi/fetcher/CMakeLists.txt                 |  17 +
 plugins/esi/lib/CMakeLists.txt                     |  17 +
 plugins/esi/test/CMakeLists.txt                    |  17 +
 plugins/header_rewrite/CMakeLists.txt              |   1 +
 plugins/healthchecks/CMakeLists.txt                |   6 -
 {lib/fastlz => plugins/libloader}/CMakeLists.txt   |   5 +-
 {src/wccp => plugins/prefetch}/CMakeLists.txt      |  18 +-
 {src/wccp => plugins/prefetch/test}/CMakeLists.txt |  13 +-
 plugins/{xdebug => regex_remap}/CMakeLists.txt     |   2 +-
 {lib/fastlz => plugins/s3_auth}/CMakeLists.txt     |   7 +-
 .../s3_auth/unit_tests}/CMakeLists.txt             |  12 +-
 proxy/http2/Http2ConnectionState.cc                |  13 +-
 proxy/http3/test/test_Http3FrameDispatcher.cc      | 102 +++-
 proxy/shared/Makefile.am                           |   2 -
 src/records/CMakeLists.txt                         |   1 -
 src/{wccp => traffic_crashlog}/CMakeLists.txt      |  12 +-
 src/traffic_crashlog/Makefile.inc                  |   1 -
 src/traffic_via/Makefile.inc                       |   1 -
 src/tscore/CryptoHash.cc                           |   8 +-
 src/tscore/ink_inet.cc                             |  73 ---
 src/tscore/unit_tests/test_CryptoHash.cc           |   2 +-
 {plugins/conf_remap => tests}/CMakeLists.txt       |   5 +-
 .../gold_tests/bigobj}/CMakeLists.txt              |  15 +-
 .../pluginTest/TSVConnFd}/CMakeLists.txt           |  11 +-
 tests/gold_tests/tls/tls.test.py                   |   2 +
 tests/gold_tests/tls/tls_client_versions.test.py   |  12 +-
 .../tls/tls_client_versions_minmax.test.py         |  14 +-
 tools/build_h3_tools.sh                            |  19 +-
 55 files changed, 532 insertions(+), 1603 deletions(-)
 delete mode 100644 mgmt/api/CoreAPIShared.cc
 delete mode 100644 mgmt/api/CoreAPIShared.h
 delete mode 100644 mgmt/api/INKMgmtAPI.cc
 delete mode 100644 mgmt/api/Makefile.am
 delete mode 100644 mgmt/api/include/Makefile.am
 delete mode 100644 mgmt/api/include/mgmtapi.h
 copy {lib/fastlz => plugins/libloader}/CMakeLists.txt (87%)
 copy {src/wccp => plugins/prefetch}/CMakeLists.txt (78%)
 copy {src/wccp => plugins/prefetch/test}/CMakeLists.txt (73%)
 copy plugins/{xdebug => regex_remap}/CMakeLists.txt (95%)
 copy {lib/fastlz => plugins/s3_auth}/CMakeLists.txt (89%)
 copy {src/wccp => plugins/s3_auth/unit_tests}/CMakeLists.txt (75%)
 copy src/{wccp => traffic_crashlog}/CMakeLists.txt (79%)
 copy {plugins/conf_remap => tests}/CMakeLists.txt (90%)
 copy {src/wccp => tests/gold_tests/bigobj}/CMakeLists.txt (74%)
 copy {plugins/cachekey => 
tests/gold_tests/pluginTest/TSVConnFd}/CMakeLists.txt (83%)

Reply via email to