File: cgiurls.h

package info (click to toggle)
xymon 4.3.30-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 11,384 kB
  • sloc: ansic: 69,137; sh: 3,601; makefile: 863; javascript: 452; perl: 48
file content (27 lines) | stat: -rw-r--r-- 1,301 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*----------------------------------------------------------------------------*/
/* 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 __CGIURLS_H__
#define __CGIURLS_H__

#include <time.h>
#include "availability.h"

extern char *hostsvcurl(char *hostname, char *service, int htmlformat);
extern char *hostsvcclienturl(char *hostname, char *section);
extern char *histcgiurl(char *hostname, char *service);
extern char *histlogurl(char *hostname, char *service, time_t histtime, char *histtime_txt);
extern char *replogurl(char *hostname, char *service, int color, 
			char *style, int recentgifs,
			reportinfo_t *repinfo, 
			char *reportstart, time_t reportend, float reportwarnlevel);

#endif