From 08423282aa7196176d2ea60219708fc107934a1e Mon Sep 17 00:00:00 2001 From: Travis Green Date: Thu, 12 Sep 2019 09:24:51 -0700 Subject: [PATCH] doc: add to sigmatch_table --- src/detect-tcp-flags.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/detect-tcp-flags.c b/src/detect-tcp-flags.c index 1312e62b88..cfade1c868 100644 --- a/src/detect-tcp-flags.c +++ b/src/detect-tcp-flags.c @@ -74,6 +74,8 @@ void DetectFlagsRegister (void) { sigmatch_table[DETECT_FLAGS].name = "tcp.flags"; sigmatch_table[DETECT_FLAGS].alias = "flags"; + sigmatch_table[DETECT_FLAGS].desc = "detect which flags are set in the TCP header"; + sigmatch_table[DETECT_FLAGS].url = DOC_URL DOC_VERSION "/rules/header-keywords.html#tcp-flags"; sigmatch_table[DETECT_FLAGS].Match = DetectFlagsMatch; sigmatch_table[DETECT_FLAGS].Setup = DetectFlagsSetup; sigmatch_table[DETECT_FLAGS].Free = DetectFlagsFree;