From: Giuseppe Longo Date: Sat, 14 Dec 2013 12:28:27 +0000 (+0100) Subject: Updating the Tmm Id for declaration of nflog capture mode X-Git-Tag: suricata-2.0.2~41 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d213d89981370c166beece9f329edbdd39edae2f;p=thirdparty%2Fsuricata.git Updating the Tmm Id for declaration of nflog capture mode --- diff --git a/src/tm-modules.c b/src/tm-modules.c index a8dfc8a8ff..1b827cea34 100644 --- a/src/tm-modules.c +++ b/src/tm-modules.c @@ -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); diff --git a/src/tm-threads-common.h b/src/tm-threads-common.h index 5443448950..f1ab425883 100644 --- a/src/tm-threads-common.h +++ b/src/tm-threads-common.h @@ -89,6 +89,8 @@ typedef enum { TMM_JSONSSHLOG, TMM_JSONTLSLOG, TMM_JSONFILELOG, + TMM_RECEIVENFLOG, + TMM_DECODENFLOG, TMM_SIZE, } TmmId;