]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
detect-tls-sni: add link to documentation 2534/head
authorEric Leblond <eric@regit.org>
Mon, 30 Jan 2017 19:25:41 +0000 (20:25 +0100)
committerVictor Julien <victor@inliniac.net>
Wed, 1 Feb 2017 10:46:16 +0000 (11:46 +0100)
src/detect-tls-sni.c

index c6ea1e9ce1790d8e4cf39d2841d4e787e52ca831..ada7e2a4f3338463e9bec8a770b8f614c41577af 100644 (file)
@@ -63,6 +63,7 @@ void DetectTlsSniRegister(void)
 {
     sigmatch_table[DETECT_AL_TLS_SNI].name = "tls_sni";
     sigmatch_table[DETECT_AL_TLS_SNI].desc = "content modifier to match specifically and only on the TLS SNI buffer";
+    sigmatch_table[DETECT_AL_TLS_SNI].url = DOC_URL DOC_VERSION "/rules/tls-keywords.html#tls-sni";
     sigmatch_table[DETECT_AL_TLS_SNI].Match = NULL;
     sigmatch_table[DETECT_AL_TLS_SNI].AppLayerMatch = NULL;
     sigmatch_table[DETECT_AL_TLS_SNI].Setup = DetectTlsSniSetup;