This is an automated email from the ASF dual-hosted git repository. scw00 pushed a change to branch quic-latest in repository https://gitbox.apache.org/repos/asf/trafficserver.git.
from a2e788b Merge branch 'master' into quic-latest add da958f1 QUIC: add qlog support add 82b5107 make qlog configurable add a126b84 remove useless INCLUDE_YAML add 1a5669a add metrics update add 511ac7e make qlog configurable add 344ede3 Chang qlog_file configuration to qlog_dir add 5c50ff3 make compiler happy No new revisions were added by this update. Summary of changes: iocore/net/P_QUICNetVConnection.h | 5 +- iocore/net/QUICNetVConnection.cc | 25 +- iocore/net/quic/Makefile.am | 7 +- iocore/net/quic/QUICConfig.cc | 7 + iocore/net/quic/QUICConfig.h | 2 + iocore/net/quic/QUICCongestionController.h | 13 + iocore/net/quic/QUICContext.cc | 20 +- iocore/net/quic/QUICContext.h | 176 +++- iocore/net/quic/QUICFrame.cc | 16 + iocore/net/quic/QUICFrame.h | 3 + iocore/net/quic/QUICFrameDispatcher.cc | 7 +- iocore/net/quic/QUICFrameDispatcher.h | 3 +- iocore/net/quic/QUICLossDetector.cc | 3 +- iocore/net/quic/QUICLossDetector.h | 14 +- iocore/net/quic/QUICNewRenoCongestionController.cc | 8 +- iocore/net/quic/QUICStreamManager.cc | 2 +- iocore/net/quic/QUICStreamManager.h | 4 +- iocore/net/quic/QUICTypes.cc | 27 + iocore/net/quic/QUICTypes.h | 8 + iocore/net/quic/qlog/QLog.cc | 103 ++ iocore/net/quic/qlog/QLog.h | 145 +++ iocore/net/quic/qlog/QLogEvent.cc | 317 ++++++ iocore/net/quic/qlog/QLogEvent.h | 1013 ++++++++++++++++++++ iocore/net/quic/qlog/QLogFrame.cc | 282 ++++++ iocore/net/quic/qlog/QLogFrame.h | 309 ++++++ iocore/net/quic/qlog/QLogListener.h | 119 +++ iocore/net/quic/qlog/QLogUtils.h | 80 ++ mgmt/RecordsConfig.cc | 2 + proxy/http/Makefile.am | 3 +- proxy/http3/Makefile.am | 3 +- src/traffic_quic/Makefile.inc | 2 +- 31 files changed, 2651 insertions(+), 77 deletions(-) create mode 100644 iocore/net/quic/qlog/QLog.cc create mode 100644 iocore/net/quic/qlog/QLog.h create mode 100644 iocore/net/quic/qlog/QLogEvent.cc create mode 100644 iocore/net/quic/qlog/QLogEvent.h create mode 100644 iocore/net/quic/qlog/QLogFrame.cc create mode 100644 iocore/net/quic/qlog/QLogFrame.h create mode 100644 iocore/net/quic/qlog/QLogListener.h create mode 100644 iocore/net/quic/qlog/QLogUtils.h