You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by bn...@apache.org on 2022/06/07 20:25:14 UTC

[trafficserver] branch 10-Dev updated (e106ae0a7 -> 25c0c2f37)

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

bneradt pushed a change to branch 10-Dev
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


    from e106ae0a7 Running clang-format
     add 63d09be0f Expose setting some HTTP/2 tunables via sni.yaml (#8818)
     add 9484df9c2 Upgrade to Proxy Verifier 2.4.0. (#8884)
     add b91b573fc Change ats_scoped_obj to std::unique_ptr . (#8882)
     add f6a779f8c Update to libswoc 1.3.8 (#8885)
     add 01d3d377b Update the GitHub stale action to use the new version (#8864)
     add ded2d89a1 Add proxy.process.hostdb.total_serve_stale (#8873)
     add d274b8f9f Allow for long Http* error.log lines (#8855)
     new 25c0c2f37 Merge latest ASF master into 10-Dev

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:
 .github/workflows/stale.yml                        |   2 +-
 ci/rat-regex.txt                                   |   1 +
 doc/admin-guide/files/records.config.en.rst        |   8 +-
 doc/admin-guide/files/sni.yaml.en.rst              |  13 +
 .../monitoring/statistics/core/hostdb.en.rst       |   9 +
 doc/appendices/command-line/traffic_top.en.rst     |  10 +
 include/tscore/ink_memory.h                        |  31 --
 iocore/hostdb/HostDB.cc                            |   4 +
 iocore/hostdb/P_HostDBProcessor.h                  |   7 +-
 iocore/net/I_NetVConnection.h                      |   4 +-
 iocore/net/P_SNIActionPerformer.h                  |  20 +
 iocore/net/SSLSNIConfig.cc                         |   3 +
 iocore/net/SSLSessionCache.cc                      |   5 +-
 iocore/net/TLSSNISupport.h                         |   5 +
 iocore/net/YamlSNIConfig.cc                        |   4 +
 iocore/net/YamlSNIConfig.h                         |   2 +
 lib/swoc/Makefile.am                               |   1 +
 lib/swoc/include/swoc/MemSpan.h                    |  80 +++-
 lib/swoc/include/swoc/TextView.h                   |  68 ++--
 lib/swoc/include/swoc/Vectray.h                    | 431 +++++++++++++++++++++
 lib/swoc/include/swoc/swoc_ip.h                    |  84 ++--
 lib/swoc/include/swoc/swoc_version.h               |   4 +-
 plugins/experimental/sslheaders/sslheaders.cc      |   2 +-
 proxy/http/HttpSM.cc                               |  36 +-
 proxy/http/HttpTransact.cc                         |  43 +-
 proxy/http2/Http2ClientSession.cc                  |  15 +-
 proxy/http2/unit_tests/test_HpackIndexingTable.cc  |  34 +-
 proxy/logging/LogFilter.cc                         |  15 +-
 src/traffic_top/stats.h                            |   1 +
 tests/prepare_proxy_verifier.sh                    |   2 +-
 tests/proxy-verifier-version.txt                   |   2 +-
 31 files changed, 771 insertions(+), 175 deletions(-)
 create mode 100644 lib/swoc/include/swoc/Vectray.h


[trafficserver] 01/01: Merge latest ASF master into 10-Dev

Posted by bn...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

bneradt pushed a commit to branch 10-Dev
in repository https://gitbox.apache.org/repos/asf/trafficserver.git

commit 25c0c2f3757904fa3d6fe0756f28502c2f7bbb90
Merge: e106ae0a7 d274b8f9f
Author: Brian Neradt <br...@gmail.com>
AuthorDate: Tue Jun 7 20:24:44 2022 +0000

    Merge latest ASF master into 10-Dev
    
     Conflicts:
            doc/admin-guide/files/sni.yaml.en.rst

 .github/workflows/stale.yml                        |   2 +-
 ci/rat-regex.txt                                   |   1 +
 doc/admin-guide/files/records.config.en.rst        |   8 +-
 doc/admin-guide/files/sni.yaml.en.rst              |  13 +
 .../monitoring/statistics/core/hostdb.en.rst       |   9 +
 doc/appendices/command-line/traffic_top.en.rst     |  10 +
 include/tscore/ink_memory.h                        |  31 --
 iocore/hostdb/HostDB.cc                            |   4 +
 iocore/hostdb/P_HostDBProcessor.h                  |   7 +-
 iocore/net/I_NetVConnection.h                      |   4 +-
 iocore/net/P_SNIActionPerformer.h                  |  20 +
 iocore/net/SSLSNIConfig.cc                         |   3 +
 iocore/net/SSLSessionCache.cc                      |   5 +-
 iocore/net/TLSSNISupport.h                         |   5 +
 iocore/net/YamlSNIConfig.cc                        |   4 +
 iocore/net/YamlSNIConfig.h                         |   2 +
 lib/swoc/Makefile.am                               |   1 +
 lib/swoc/include/swoc/MemSpan.h                    |  80 +++-
 lib/swoc/include/swoc/TextView.h                   |  68 ++--
 lib/swoc/include/swoc/Vectray.h                    | 431 +++++++++++++++++++++
 lib/swoc/include/swoc/swoc_ip.h                    |  84 ++--
 lib/swoc/include/swoc/swoc_version.h               |   4 +-
 plugins/experimental/sslheaders/sslheaders.cc      |   2 +-
 proxy/http/HttpSM.cc                               |  36 +-
 proxy/http/HttpTransact.cc                         |  43 +-
 proxy/http2/Http2ClientSession.cc                  |  15 +-
 proxy/http2/unit_tests/test_HpackIndexingTable.cc  |  34 +-
 proxy/logging/LogFilter.cc                         |  15 +-
 src/traffic_top/stats.h                            |   1 +
 tests/prepare_proxy_verifier.sh                    |   2 +-
 tests/proxy-verifier-version.txt                   |   2 +-
 31 files changed, 771 insertions(+), 175 deletions(-)