From 5001913033d64203cb49e652e2a925a7e2830b83 Mon Sep 17 00:00:00 2001 From: Christopher Faulet Date: Tue, 8 Mar 2022 15:47:02 +0100 Subject: [PATCH] DEBUG: stream: Add the missing descriptions for stream trace events The description for STRM_EV_FLT_ANA and STRM_EV_FLT_ERR was missing. This patch should be backported as far as 2.2. --- src/stream.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/stream.c b/src/stream.c index 90d7c22f4e..44fc4c930d 100644 --- a/src/stream.c +++ b/src/stream.c @@ -99,6 +99,9 @@ static const struct trace_event strm_trace_events[] = { { .mask = STRM_EV_TCP_ANA, .name = "tcp_ana", .desc = "TCP analyzers" }, { .mask = STRM_EV_TCP_ERR, .name = "tcp_err", .desc = "error during TCP analyzis" }, + + { .mask = STRM_EV_FLT_ANA, .name = "flt_ana", .desc = "Filter analyzers" }, + { .mask = STRM_EV_FLT_ERR, .name = "flt_err", .desc = "error during filter analyzis" }, {} }; -- 2.47.3