[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[ossec-cvs] ossec-hids: plugin_decoders.h (HEAD) [dcid]
Module name: ossec-hids
Changes by: dcid 07/08/31 22:20:30
Modified files:
plugin_decoders.h
Log message:
Description: Adding rules and decoders for Sonicwall. thanks to Peter M. Abraham for the data.
Reviewed by: dcid
Bug:
Index: plugin_decoders.h
===================================================================
RCS file: /usr/cvsroot/ossec-hids/src/analysisd/decoders/plugin_decoders.h,v
diff -u -r1.3 -r1.4
--- plugin_decoders.h 20 Jul 2007 00:19:25 -0000 1.3
+++ plugin_decoders.h 1 Sep 2007 01:20:29 -0000 1.4
@@ -22,19 +22,27 @@
void *PF_Decoder_Exec(void *lf);
/* Plugin for Symantec Web Security */
-void *SymantecWS_Decoder_Exec(Eventinfo *lf);
void *SymantecWS_Decoder_Init(char *p_name);
+void *SymantecWS_Decoder_Exec(Eventinfo *lf);
+
+/* Plugin for Sonicwall */
+void *SonicWall_Decoder_Init(char *p_name);
+void *SonicWall_Decoder_Exec(Eventinfo *lf);
+
/* List of plugins. All three lists must be in the same order */
char *(plugin_decoders[])={"PF_Decoder",
"SymantecWS_Decoder",
+ "SonicWall_Decoder",
NULL};
void *(plugin_decoders_init[]) = {PF_Decoder_Init,
- SymantecWS_Decoder_Init,
+ SymantecWS_Decoder_Init,
+ SonicWall_Decoder_Init,
NULL};
void *(plugin_decoders_exec[]) = {PF_Decoder_Exec,
SymantecWS_Decoder_Exec,
+ SonicWall_Decoder_Exec,
NULL};
OSSEC home |
Main Index |
Thread Index
OSSEC project: www.ossec.net.
Mailling list information: http://www.ossec.net/en/mailing_lists.html.