From 105dd636cb6e03ffe2805cc2a8ff4a25af6fb1c6 Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Mon, 13 Mar 2023 14:48:19 +0100 Subject: [PATCH] detect/analyzer: add content relative_next flag --- src/detect-engine-analyzer.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/detect-engine-analyzer.c b/src/detect-engine-analyzer.c index 38780d8a8b..aa2a161021 100644 --- a/src/detect-engine-analyzer.c +++ b/src/detect-engine-analyzer.c @@ -640,6 +640,7 @@ static void DumpContent(JsonBuilder *js, const DetectContentData *cd) jb_set_uint(js, "within", cd->within); } jb_set_bool(js, "fast_pattern", cd->flags & DETECT_CONTENT_FAST_PATTERN); + jb_set_bool(js, "relative_next", cd->flags & DETECT_CONTENT_RELATIVE_NEXT); } static void DumpPcre(JsonBuilder *js, const DetectPcreData *cd)