]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
Updating the Tmm Id for declaration of nflog capture mode
authorGiuseppe Longo <giuseppelng@gmail.com>
Sat, 14 Dec 2013 12:28:27 +0000 (13:28 +0100)
committerVictor Julien <victor@inliniac.net>
Fri, 23 May 2014 10:42:52 +0000 (12:42 +0200)
src/tm-modules.c
src/tm-threads-common.h

index a8dfc8a8ff1bdb1fecce6c7e5b7a6b15466d9ff6..1b827cea34313317786d3261ef5289b6f218f1f6 100644 (file)
@@ -193,6 +193,8 @@ void TmModuleRegisterTests(void) {
 const char * TmModuleTmmIdToString(TmmId id)
 {
     switch (id) {
+        CASE_CODE (TMM_RECEIVENFLOG);
+        CASE_CODE (TMM_DECODENFLOG);
         CASE_CODE (TMM_DECODENFQ);
         CASE_CODE (TMM_VERDICTNFQ);
         CASE_CODE (TMM_RECEIVENFQ);
index 5443448950525709d57eb7620015f9d6937fd816..f1ab4258833315d054d44dad3b729ad2b3fdd95e 100644 (file)
@@ -89,6 +89,8 @@ typedef enum {
     TMM_JSONSSHLOG,
     TMM_JSONTLSLOG,
     TMM_JSONFILELOG,
+    TMM_RECEIVENFLOG,
+    TMM_DECODENFLOG,
     TMM_SIZE,
 } TmmId;