/***********************************************************************
*
* CONFIG.C - Nagios Configuration CGI (View Only)
*
* Copyright (c) 1999-2006 Ethan Galstad (nagios@nagios.org)
* Last Modified: 03-21-2006
*
* This CGI program will display various configuration information.
*
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
***********************************************************************/
#include "../include/config.h"
#include "../include/common.h"
#include "../include/objects.h"
#include "../include/cgiutils.h"
#include "../include/cgiauth.h"
#include "../include/getcgi.h"
extern char main_config_file[MAX_FILENAME_LENGTH];
extern char url_html_path[MAX_FILENAME_LENGTH];
extern char url_docs_path[MAX_FILENAME_LENGTH];
extern char url_images_path[MAX_FILENAME_LENGTH];
extern char url_logo_images_path[MAX_FILENAME_LENGTH];
extern char url_stylesheets_path[MAX_FILENAME_LENGTH];
extern host *host_list;
extern service *service_list;
extern hostgroup *hostgroup_list;
extern servicegroup *servicegroup_list;
extern contactgroup *contactgroup_list;
extern command *command_list;
extern timeperiod *timeperiod_list;
extern contact *contact_list;
extern servicedependency *servicedependency_list;
extern serviceescalation *serviceescalation_list;
extern hostdependency *hostdependency_list;
extern hostescalation *hostescalation_list;
extern hostextinfo *hostextinfo_list;
extern serviceextinfo *serviceextinfo_list;
#define DISPLAY_NONE 0
#define DISPLAY_HOSTS 1
#define DISPLAY_HOSTGROUPS 2
#define DISPLAY_CONTACTS 3
#define DISPLAY_CONTACTGROUPS 4
#define DISPLAY_SERVICES 5
#define DISPLAY_TIMEPERIODS 6
#define DISPLAY_COMMANDS 7
#define DISPLAY_HOSTGROUPESCALATIONS 8 /* no longer implemented */
#define DISPLAY_SERVICEDEPENDENCIES 9
#define DISPLAY_SERVICEESCALATIONS 10
#define DISPLAY_HOSTDEPENDENCIES 11
#define DISPLAY_HOSTESCALATIONS 12
#define DISPLAY_HOSTEXTINFO 13
#define DISPLAY_SERVICEEXTINFO 14
#define DISPLAY_SERVICEGROUPS 15
void document_header(int);
void document_footer(void);
int process_cgivars(void);
void display_options(void);
void display_hosts(void);
void display_hostgroups(void);
void display_servicegroups(void);
void display_contacts(void);
void display_contactgroups(void);
void display_services(void);
void display_timeperiods(void);
void display_commands(void);
void display_servicedependencies(void);
void display_serviceescalations(void);
void display_hostdependencies(void);
void display_hostescalations(void);
void display_hostextinfo(void);
void display_serviceextinfo(void);
void unauthorized_message(void);
authdata current_authdata;
int display_type=DISPLAY_NONE;
=1= |