This is an automated email from the ASF dual-hosted git repository.
bneradt pushed a change to branch 11-Dev
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
from 9e0da423bb 11-Dev: Fix docs build (#12708)
add 3445d958df Update format string for formatting chrono duration (#12684)
add ae00d91c8d Apply virtualenv and pip improvements to cmake-format.sh
(#12704)
add f1247af0c3 Add USDT for cache directory insertion and deletion (#12688)
add 90dbc21a54 Remove eventsystem Inline.cc and cleanup private headers.
(#12581)
add 7eee64f0bd Update README.md directory structure and package
requirements (#12692)
add 4eb90121a1 Fix stats_over_http compilation with Clang 16 and earlier
(#12689)
add 21d895f5a1 various worktree fixes (#12705)
add 32e22c46a3 Transfer-Encoding:chunked log field fix (#12667)
add 95c9c77469 Merge latest master into 11-Dev
No new revisions were added by this update.
Summary of changes:
CMakeLists.txt | 31 +-
README.md | 71 +-
cmake/proxy-verifier.cmake | 13 +-
doc/ext/plantuml_fetch.sh | 2 +-
doc/ext/traffic-server.cmake.in.py | 6 +-
doc/ext/traffic-server.py | 7 +-
include/iocore/eventsystem/EThread.h | 25 +-
include/iocore/eventsystem/Event.h | 20 +-
include/iocore/eventsystem/Freer.h | 8 +-
include/iocore/eventsystem/IOBuffer.h | 41 +
include/iocore/eventsystem/ProtectedQueue.h | 50 +
include/iocore/eventsystem/Thread.h | 12 +-
include/iocore/eventsystem/VConnection.h | 56 +-
include/iocore/eventsystem/VIO.h | 66 +-
include/proxy/http/HttpTransact.h | 1 +
include/ts/InkAPIPrivateIOCore.h | 9 +-
plugins/stats_over_http/stats_over_http.cc | 6 +
src/api/InkVConnInternal.cc | 2 +
src/iocore/cache/CacheDir.cc | 23 +-
src/iocore/cache/P_CacheDir.h | 6 +-
src/iocore/cache/RegressionSM.cc | 1 +
src/iocore/cache/unit_tests/main.cc | 2 +
src/iocore/eventsystem/CMakeLists.txt | 2 +-
src/iocore/eventsystem/ConfigProcessor.cc | 2 +-
src/iocore/eventsystem/EventSystem.cc | 5 +-
src/iocore/eventsystem/IOBuffer.cc | 965 +++++++++++++++++-
src/iocore/eventsystem/Inline.cc | 30 -
src/iocore/eventsystem/Lock.cc | 4 +-
src/iocore/eventsystem/PQ-List.cc | 3 +-
src/iocore/eventsystem/P_EventSystem.h | 49 -
src/iocore/eventsystem/P_IOBuffer.h | 1034 --------------------
src/iocore/eventsystem/P_ProtectedQueue.h | 83 --
src/iocore/eventsystem/P_Thread.h | 49 -
src/iocore/eventsystem/P_UnixEThread.h | 261 -----
src/iocore/eventsystem/P_UnixEventProcessor.h | 246 -----
src/iocore/eventsystem/P_VConnection.h | 95 --
src/iocore/eventsystem/P_VIO.h | 123 ---
src/iocore/eventsystem/Processor.cc | 4 +-
src/iocore/eventsystem/ProtectedQueue.cc | 3 +-
src/iocore/eventsystem/RecProcess.cc | 3 +-
src/iocore/eventsystem/UnixEThread.cc | 207 +++-
src/iocore/eventsystem/UnixEvent.cc | 4 +-
src/iocore/eventsystem/UnixEventProcessor.cc | 215 ++++
src/iocore/eventsystem/{P_UnixEvent.h => VIO.cc} | 42 +-
src/iocore/eventsystem/Watchdog.cc | 13 +-
src/iocore/net/SSLSessionCache.cc | 2 +-
src/iocore/net/Socks.cc | 1 -
src/iocore/net/TLSEventSupport.cc | 1 +
src/iocore/utils/OneWayMultiTunnel.cc | 15 +-
src/iocore/utils/OneWayTunnel.cc | 2 +-
src/proxy/PluginVC.cc | 1 -
src/proxy/ReverseProxy.cc | 1 -
src/proxy/hdrs/HdrTSOnly.cc | 2 +-
src/proxy/http/HttpDebugNames.cc | 1 -
src/proxy/http/HttpTransact.cc | 3 +
src/proxy/http/PreWarmManager.cc | 1 -
src/proxy/http/remap/PluginDso.cc | 1 -
src/proxy/http/remap/PluginFactory.cc | 2 +-
src/proxy/http3/Http09App.cc | 2 +-
src/proxy/http3/Http3App.cc | 2 +-
src/proxy/logging/Log.cc | 1 -
src/proxy/logging/LogAccess.cc | 28 +
src/proxy/logging/LogBuffer.cc | 1 -
src/proxy/logging/LogFile.cc | 1 -
src/proxy/logging/LogObject.cc | 2 +-
src/traffic_server/SocksProxy.cc | 1 -
src/traffic_server/traffic_server.cc | 1 -
.../ats_probe/{ats_probe.bt => cache_dir_probe.bt} | 21 +-
tests/gold_tests/ats_probe/cache_dir_probe.test.py | 122 +++
tests/gold_tests/logging/gold/field-test.gold | 6 +-
tests/gold_tests/logging/log-field.test.py | 8 +-
tools/cmake-format.sh | 41 +-
72 files changed, 2031 insertions(+), 2139 deletions(-)
delete mode 100644 src/iocore/eventsystem/Inline.cc
delete mode 100644 src/iocore/eventsystem/P_EventSystem.h
delete mode 100644 src/iocore/eventsystem/P_IOBuffer.h
delete mode 100644 src/iocore/eventsystem/P_ProtectedQueue.h
delete mode 100644 src/iocore/eventsystem/P_Thread.h
delete mode 100644 src/iocore/eventsystem/P_UnixEThread.h
delete mode 100644 src/iocore/eventsystem/P_UnixEventProcessor.h
delete mode 100644 src/iocore/eventsystem/P_VConnection.h
delete mode 100644 src/iocore/eventsystem/P_VIO.h
rename src/iocore/eventsystem/{P_UnixEvent.h => VIO.cc} (61%)
copy tests/gold_tests/ats_probe/{ats_probe.bt => cache_dir_probe.bt} (75%)
create mode 100644 tests/gold_tests/ats_probe/cache_dir_probe.test.py