This is an automated email from the ASF dual-hosted git repository.
bneradt pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/master by this push:
new 4895d5332a gdb-helpers.py: Add tunnel events to the history parser
(#12322)
4895d5332a is described below
commit 4895d5332a64b6b9bf2f8bb4b29b9ae4591fad83
Author: Brian Neradt <[email protected]>
AuthorDate: Tue Jul 8 15:31:35 2025 -0500
gdb-helpers.py: Add tunnel events to the history parser (#12322)
This adds the HTTP_TUNNEL_EVENT_* events to the history parser
in gdb-helpers.py
---
tools/gdb-helpers.py | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/tools/gdb-helpers.py b/tools/gdb-helpers.py
index 5df12f284c..bbecedeae4 100644
--- a/tools/gdb-helpers.py
+++ b/tools/gdb-helpers.py
@@ -170,6 +170,17 @@ class HistoryEntryPrinter:
elif event_num == 2002:
return 'TS_EVENT_SSL_SESSION_REMOVE'
+ elif event_num == 2301:
+ return 'HTTP_TUNNEL_EVENT_DONE'
+ elif event_num == 2302:
+ return 'HTTP_TUNNEL_EVENT_PRECOMPLETE'
+ elif event_num == 2303:
+ return 'HTTP_TUNNEL_EVENT_CONSUMER_DETACH'
+ elif event_num == 2304:
+ return 'HTTP_TUNNEL_EVENT_ACTIVITY_CHECK'
+ elif event_num == 2305:
+ return 'HTTP_TUNNEL_EVENT_PARSE_ERROR'
+
elif event_num == 3900:
return 'TS_EVENT_AIO_DONE'