new upstream release (3.3.0); modify package compatibility for Stretch
[ossec-hids.git] / src / analysisd / decoders / plugin_decoders.c
1 /* Copyright (C) 2015 Trend Micro Inc.
2  * All rights reserved.
3  *
4  * This program is a free software; you can redistribute it
5  * and/or modify it under the terms of the GNU General Public
6  * License (version 2) as published by the FSF - Free Software
7  * Foundation.
8  */
9
10 #include "plugin_decoders.h"
11
12 /* List of plugins. All three lists must be in the same order */
13 const char *(plugin_decoders[]) = {"PF_Decoder",
14                              "SymantecWS_Decoder",
15                              "SonicWall_Decoder",
16                              "OSSECAlert_Decoder",
17                              NULL
18                             };
19 void *(plugin_decoders_init[]) = {PF_Decoder_Init,
20                                   SymantecWS_Decoder_Init,
21                                   SonicWall_Decoder_Init,
22                                   OSSECAlert_Decoder_Init,
23                                   NULL
24                                  };
25 void *(plugin_decoders_exec[]) = {PF_Decoder_Exec,
26                                   SymantecWS_Decoder_Exec,
27                                   SonicWall_Decoder_Exec,
28                                   OSSECAlert_Decoder_Exec,
29                                   NULL
30                                  };