X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?a=blobdiff_plain;f=src%2Fanalysisd%2Fdecoders%2Fplugin_decoders.h;h=282eb3139c3993a654aa6093c26de2e044568abb;hb=refs%2Fheads%2Fupstream;hp=dea916127596c3a5d1e4ad5af21edf9534510cba;hpb=914feba5d54f979cd5d7e69c349c3d01f630042a;p=ossec-hids.git diff --git a/src/analysisd/decoders/plugin_decoders.h b/src/analysisd/decoders/plugin_decoders.h index dea9161..282eb31 100755 --- a/src/analysisd/decoders/plugin_decoders.h +++ b/src/analysisd/decoders/plugin_decoders.h @@ -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