Imported Upstream version 2.7
[ossec-hids.git] / src / analysisd / decoders / plugin_decoders.h
index 239549f..282eb31 100755 (executable)
@@ -1,4 +1,5 @@
-/* @(#) $Id$ */
+/* @(#) $Id: ./src/analysisd/decoders/plugin_decoders.h, 2011/09/08 dcid Exp $
+ */
 
 /* Copyright (C) 2009 Trend Micro Inc.
  * All rights reserved.
@@ -8,7 +9,7 @@
  * License (version 2) as published by the FSF - Free Software
  * Foundation.
  *
- * License details at the LICENSE file included with OSSEC or 
+ * License details at the LICENSE file included with OSSEC or
  * online at: http://www.ossec.net/en/licensing.html
  */
 
@@ -36,22 +37,22 @@ void *OSSECAlert_Decoder_Exec(void *lf);
 
 /* List of plugins. All three lists must be in the same order */
 char *(plugin_decoders[])={"PF_Decoder",
-                           "SymantecWS_Decoder", 
+                           "SymantecWS_Decoder",
                            "SonicWall_Decoder",
                            "OSSECAlert_Decoder",
                            NULL};
-void *(plugin_decoders_init[]) = {PF_Decoder_Init, 
+void *(plugin_decoders_init[]) = {PF_Decoder_Init,
                                   SymantecWS_Decoder_Init,
-                                  SonicWall_Decoder_Init, 
+                                  SonicWall_Decoder_Init,
                                   OSSECAlert_Decoder_Init,
                                   NULL};
-void *(plugin_decoders_exec[]) = {PF_Decoder_Exec, 
+void *(plugin_decoders_exec[]) = {PF_Decoder_Exec,
                                   SymantecWS_Decoder_Exec,
                                   SonicWall_Decoder_Exec,
                                   OSSECAlert_Decoder_Exec,
                                   NULL};
 
-                    
+
 
 
 #endif