2003-03-14 05:32:33 +08:00
|
|
|
/* $Id: tinyproxy.h,v 1.38 2003-03-13 21:32:33 rjkaes Exp $
|
2000-02-17 01:32:49 +08:00
|
|
|
*
|
|
|
|
* See 'tinyproxy.c' for a detailed description.
|
|
|
|
*
|
|
|
|
* Copyright (C) 1998 Steven Young
|
|
|
|
* Copyright (C) 1999 Robert James Kaes (rjkaes@flarenet.com)
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the
|
|
|
|
* Free Software Foundation; either version 2, or (at your option) any
|
|
|
|
* later version.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2001-06-02 10:07:34 +08:00
|
|
|
#ifndef TINYPROXY_TINYPROXY_H
|
|
|
|
#define TINYPROXY_TINYPROXY_H
|
2000-02-17 01:32:49 +08:00
|
|
|
|
2002-05-24 02:27:19 +08:00
|
|
|
#include "common.h"
|
2000-02-17 01:32:49 +08:00
|
|
|
|
|
|
|
/* Global variables for the main controls of the program */
|
2001-11-26 09:39:53 +08:00
|
|
|
#define MAXBUFFSIZE ((size_t)(1024 * 96)) /* Max size of buffer */
|
2000-09-12 08:03:53 +08:00
|
|
|
#define MAX_IDLE_TIME (60 * 10) /* 10 minutes of no activity */
|
2000-02-17 01:32:49 +08:00
|
|
|
|
|
|
|
struct config_s {
|
|
|
|
char *logf_name;
|
2003-03-14 05:32:33 +08:00
|
|
|
char *config_file;
|
2002-12-05 01:06:14 +08:00
|
|
|
unsigned int syslog; /* boolean */
|
2000-02-17 01:32:49 +08:00
|
|
|
int port;
|
|
|
|
char *stathost;
|
2002-12-05 01:06:14 +08:00
|
|
|
unsigned int quit; /* boolean */
|
2000-09-12 08:03:53 +08:00
|
|
|
char *username;
|
|
|
|
char *group;
|
2000-02-17 01:32:49 +08:00
|
|
|
char *ipAddr;
|
|
|
|
#ifdef FILTER_ENABLE
|
|
|
|
char *filter;
|
2002-12-05 01:06:14 +08:00
|
|
|
unsigned int filter_url; /* boolean */
|
|
|
|
unsigned int filter_extended; /* boolean */
|
2003-01-28 01:57:45 +08:00
|
|
|
unsigned int filter_casesensitive; /* boolean */
|
2000-02-17 01:32:49 +08:00
|
|
|
#endif /* FILTER_ENABLE */
|
2000-09-12 08:03:53 +08:00
|
|
|
#ifdef XTINYPROXY_ENABLE
|
2000-02-17 01:32:49 +08:00
|
|
|
char *my_domain;
|
|
|
|
#endif
|
2001-09-17 04:12:29 +08:00
|
|
|
#ifdef UPSTREAM_SUPPORT
|
|
|
|
char *upstream_name;
|
|
|
|
int upstream_port;
|
|
|
|
#endif /* UPSTREAM_SUPPORT */
|
2000-09-12 08:03:53 +08:00
|
|
|
char *pidpath;
|
|
|
|
unsigned int idletimeout;
|
2002-04-25 00:45:45 +08:00
|
|
|
char* bind_address;
|
2002-05-24 02:27:19 +08:00
|
|
|
|
2002-12-05 01:06:14 +08:00
|
|
|
unsigned int via_http_header; /* boolean */
|
2003-03-14 05:32:33 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Error page support. This is an array of pointers to structures
|
|
|
|
* which describe the error page path, and what HTTP error it handles.
|
|
|
|
* an example would be { "/usr/local/etc/tinyproxy/404.html", 404 }
|
|
|
|
* Ending of array is noted with NULL, 0.
|
|
|
|
*/
|
|
|
|
struct error_pages_s {
|
|
|
|
char *errorpage_path;
|
|
|
|
unsigned int errorpage_errnum;
|
|
|
|
} **errorpages;
|
|
|
|
/*
|
|
|
|
* Error page to be displayed if appropriate page cannot be located
|
|
|
|
* in the errorpages structure.
|
|
|
|
*/
|
|
|
|
char *errorpage_undef;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The HTML statistics page.
|
|
|
|
*/
|
|
|
|
char *statpage;
|
2000-02-17 01:32:49 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Global Structures used in the program */
|
|
|
|
extern struct config_s config;
|
2002-12-05 01:06:14 +08:00
|
|
|
extern unsigned int received_sighup; /* boolean */
|
|
|
|
extern unsigned int processed_config_file; /* boolean */
|
2000-02-17 01:32:49 +08:00
|
|
|
|
|
|
|
#endif
|