X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?a=blobdiff_plain;f=src%2Fmonitord%2Fmonitord.h;h=3f182f8fce6df2bdb34123f3798cc8e1d2b4a40d;hb=refs%2Fheads%2Fmaster;hp=18e97e5802f1e794684647970efa842af7231e2c;hpb=914feba5d54f979cd5d7e69c349c3d01f630042a;p=ossec-hids.git diff --git a/src/monitord/monitord.h b/src/monitord/monitord.h old mode 100755 new mode 100644 index 18e97e5..3f182f8 --- a/src/monitord/monitord.h +++ b/src/monitord/monitord.h @@ -1,54 +1,33 @@ -/* @(#) $Id: monitord.h,v 1.7 2009/06/24 17:06:27 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 */ - #ifndef _MONITORD_H #define _MONITORD_H #ifndef ARGV0 - #define ARGV0 "ossec-monitord" +#define ARGV0 "ossec-monitord" #endif - -typedef struct _monitor_config -{ - short int day_wait; - short int compress; - short int sign; - short int monitor_agents; - int a_queue; - - char **agents; -}monitor_config; - - -/** Prototypes **/ -/* Main monitord */ -void Monitord(); +#include "config/reports-config.h" -/*manage_files */ +/* Prototypes */ +void Monitord(void) __attribute__((noreturn)); void manage_files(int cday, int cmon, int cyear); +void generate_reports(int cday, int cmon, int cyear); +void monitor_agents(void); +void OS_SignLog(const char *logfile, const char *logfile_old, int log_missing); +void OS_CompressLog(const char *logfile); -/* monitor_agents */ -void monitor_agents(); - -/* Sign a log */ -void OS_SignLog(char *logfile, char *logfile_old, int log_missing); - -/* Compress log */ -void OS_CompressLog(char *logfile); - +int OS_SendCustomEmail2(char **to, char *subject, char *smtpserver, char *from, char *idsname, char *fname); /* Global variables */ -monitor_config mond; - +extern monitor_config mond; #endif +