Skip to content

Commit 4895d53

Browse files
authored
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
1 parent 13ee0cd commit 4895d53

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

tools/gdb-helpers.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,17 @@ def event_value_to_description(event_num: int) -> str:
170170
elif event_num == 2002:
171171
return 'TS_EVENT_SSL_SESSION_REMOVE'
172172

173+
elif event_num == 2301:
174+
return 'HTTP_TUNNEL_EVENT_DONE'
175+
elif event_num == 2302:
176+
return 'HTTP_TUNNEL_EVENT_PRECOMPLETE'
177+
elif event_num == 2303:
178+
return 'HTTP_TUNNEL_EVENT_CONSUMER_DETACH'
179+
elif event_num == 2304:
180+
return 'HTTP_TUNNEL_EVENT_ACTIVITY_CHECK'
181+
elif event_num == 2305:
182+
return 'HTTP_TUNNEL_EVENT_PARSE_ERROR'
183+
173184
elif event_num == 3900:
174185
return 'TS_EVENT_AIO_DONE'
175186

0 commit comments

Comments
 (0)