Imported Upstream version 2.7
[ossec-hids.git] / src / analysisd / decoders / plugin_decoders.h
index dea9161..282eb31 100755 (executable)
@@ -1,14 +1,15 @@
-/* @(#) $Id: plugin_decoders.h,v 1.7 2009/06/24 17:06:23 dcid Exp $ */
+/* @(#) $Id: ./src/analysisd/decoders/plugin_decoders.h, 2011/09/08 dcid Exp $
+ */
 
 /* Copyright (C) 2009 Trend Micro Inc.
  * All rights reserved.
  *
  * This program is a free software; you can redistribute it
  * and/or modify it under the terms of the GNU General Public
- * License (version 3) as published by the FSF - Free Software
+ * 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