projects
/
haproxy-2.3.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eeba8bc
)
DEBUG: stream: Add the missing descriptions for stream trace events
author
Christopher Faulet
<cfaulet@haproxy.com>
Tue, 8 Mar 2022 14:47:02 +0000
(15:47 +0100)
committer
Christopher Faulet
<cfaulet@haproxy.com>
Mon, 14 Mar 2022 10:05:54 +0000
(11:05 +0100)
The description for STRM_EV_FLT_ANA and STRM_EV_FLT_ERR was missing.
This patch should be backported as far as 2.2.
(cherry picked from commit
5001913033d64203cb49e652e2a925a7e2830b83
)
Signed-off-by: Christopher Faulet <cfaulet@haproxy.com>
(cherry picked from commit
f30b125a38a96b07afd4f8652139d8ebf07893e2
)
Signed-off-by: Christopher Faulet <cfaulet@haproxy.com>
(cherry picked from commit
d176ff5445aeb0d39ba3a62d7ace478bab472ce8
)
Signed-off-by: Christopher Faulet <cfaulet@haproxy.com>
src/stream.c
patch
|
blob
|
history
diff --git
a/src/stream.c
b/src/stream.c
index
271991d
..
715234a
100644
(file)
--- a/
src/stream.c
+++ b/
src/stream.c
@@
-98,6
+98,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" },
{}
};