From: Travis Green Date: Thu, 12 Sep 2019 16:24:51 +0000 (-0700) Subject: doc: add to sigmatch_table X-Git-Tag: suricata-5.0.0-rc1~50 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=08423282aa7196176d2ea60219708fc107934a1e;p=thirdparty%2Fsuricata.git doc: add to sigmatch_table --- 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;