X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?a=blobdiff_plain;f=src%2Fconfig%2Fglobal-config.h;h=774466335dc1c20d6e838cf05d95f70330b695ff;hb=HEAD;hp=b8fcbbc8b4265a446837029d791cced8fcabbe0e;hpb=914feba5d54f979cd5d7e69c349c3d01f630042a;p=ossec-hids.git diff --git a/src/config/global-config.h b/src/config/global-config.h old mode 100755 new mode 100644 index b8fcbbc..7744663 --- a/src/config/global-config.h +++ b/src/config/global-config.h @@ -1,25 +1,21 @@ -/* @(#) $Id: global-config.h,v 1.16 2009/06/24 17:06:25 dcid Exp $ */ - /* Copyright (C) 2009 Trend Micro Inc. * All right 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 */ - - #ifndef _CCONFIG__H #define _CCONFIG__H -#include "shared.h" +#include "shared.h" /* Configuration structure */ -typedef struct __Config -{ +typedef struct __Config { u_int8_t logall; + u_int8_t logall_json; u_int8_t stats; u_int8_t integrity; u_int8_t syscheck_auto_ignore; @@ -29,7 +25,9 @@ typedef struct __Config u_int8_t mailbylevel; u_int8_t logbylevel; u_int8_t logfw; - + int decoder_order_size; + + /* Prelude support */ u_int8_t prelude; /* which min. level the alert must be sent to prelude */ @@ -37,38 +35,67 @@ typedef struct __Config /* prelude profile name */ char *prelude_profile; - /* Picviz support */ - u_int8_t picviz; - char *picviz_socket; + /* GeoIP DB */ + char *geoipdb_file; + + /* ZEROMQ Export */ + u_int8_t zeromq_output; + char *zeromq_output_uri; + char *zeromq_output_server_cert; + char *zeromq_output_client_cert; + + /* JSONOUT Export */ + u_int8_t jsonout_output; /* Not currently used */ u_int8_t keeplogdate; /* Mail alerting */ short int mailnotify; - - /* For the active response */ + + /* Custom Alert output*/ + short int custom_alert_output; + char *custom_alert_output_format; + + /* For the active response */ int ar; - + /* For the correlation */ int memorysize; - - /* List of files to ignore (syscheck) */ + + /* List of files to ignore (syscheck) */ char **syscheck_ignore; /* List of ips to never block */ - os_ip **white_list; + os_ip **allow_list; /* List of hostnames to never block */ - OSMatch **hostname_white_list; + char **hostname_allow_list; /* List of rules */ char **includes; - /* Global rule hash. */ - void *g_rules_hash; + /* List of Lists */ + char **lists; -}_Config; + /* List of decoders */ + char **decoders; + /* Global rule hash */ + OSHash *g_rules_hash; +#ifdef LIBGEOIP_ENABLED + /* GeoIP support */ + u_int8_t loggeoip; + char *geoip_db_path; + char *geoip6_db_path; + int geoip_jsonout; #endif + + /* MD5 DB support */ + char *md5_allowlist; + +} _Config; + +#endif /* _CCONFIG__H */ +