This is an automated email from the ASF dual-hosted git repository.
zwoop pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
from a16e0f8b0d Fail earlier if Netcat is not installed (#11438)
add 433bb35e33 More cripts (#11460)
No new revisions were added by this update.
Summary of changes:
doc/developer-guide/cripts/cripts-bundles.en.rst | 34 ++-
doc/developer-guide/cripts/cripts-misc.en.rst | 10 +-
doc/developer-guide/cripts/cripts-urls.en.rst | 5 +-
doc/developer-guide/cripts/cripts-variables.en.rst | 13 ++
example/cripts/example1.cc | 4 +-
include/cripts/Bundle.hpp | 7 +-
include/cripts/Bundles/{Common.hpp => Caching.hpp} | 35 ++-
include/cripts/Bundles/Common.hpp | 33 ++-
include/cripts/Bundles/Headers.hpp | 25 +-
include/cripts/Bundles/LogsMetrics.hpp | 8 +-
include/cripts/Configs.hpp | 253 ++++++++++-----------
include/cripts/ConfigsBase.hpp | 104 +++++++++
include/cripts/Connections.hpp | 53 ++---
include/cripts/Context.hpp | 2 +-
include/cripts/Crypto.hpp | 59 ++---
include/cripts/Epilogue.hpp | 3 +-
include/cripts/Error.hpp | 24 +-
include/cripts/Files.hpp | 19 +-
include/cripts/Headers.hpp | 34 ++-
include/cripts/Instance.hpp | 16 +-
include/cripts/Lulu.hpp | 38 ++--
include/cripts/Matcher.hpp | 24 +-
include/cripts/Plugins.hpp | 14 +-
include/cripts/Preamble.hpp | 5 +-
include/cripts/Time.hpp | 15 +-
include/cripts/Transaction.hpp | 2 +-
include/cripts/UUID.hpp | 19 +-
include/cripts/Urls.hpp | 119 ++++++----
src/cripts/Bundles/{Common.cc => Caching.cc} | 35 +--
src/cripts/Bundles/Common.cc | 111 ++++++++-
src/cripts/Bundles/HRWBridge.cc | 70 +++++-
src/cripts/Bundles/Headers.cc | 32 +--
src/cripts/Bundles/LogsMetrics.cc | 13 +-
src/cripts/CMakeLists.txt | 4 +
src/cripts/Configs.cc | 92 ++++++++
src/cripts/Context.cc | 3 +
src/cripts/Error.cc | 6 +
src/cripts/Files.cc | 13 ++
src/cripts/Instance.cc | 2 -
src/cripts/Urls.cc | 28 +++
tools/cripts/genconfig.py | 41 +---
41 files changed, 936 insertions(+), 491 deletions(-)
copy include/cripts/Bundles/{Common.hpp => Caching.hpp} (80%)
create mode 100644 include/cripts/ConfigsBase.hpp
copy src/cripts/Bundles/{Common.cc => Caching.cc} (63%)