1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
/*----------------------------------------------------------------------------*/
/* Xymon monitor library. */
/* */
/* Copyright (C) 2002-2011 Henrik Storner <henrik@storner.dk> */
/* */
/* This program is released under the GNU General Public License (GPL), */
/* version 2. See the file "COPYING" for details. */
/* */
/*----------------------------------------------------------------------------*/
#ifndef __ACKNOWLEDGEMENTSLOG_H_
#define __ACKNOWLEDGEMENTSLOG_H_
extern void do_acknowledgementslog(FILE *output, int maxcount, int maxminutes, char *fromtime, char *totime,
char *pagematch, char *expagematch,
char *hostmatch, char *exhostmatch,
char *testmatch, char *extestmatch,
char *rcptmatch, char *exrcptmatch);
#endif
|