diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-12-04 17:06:14 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-12-04 17:06:14 +0000 |
commit | 0a20bdd5b4ea957e108cbf43725349e2766bd1d1 (patch) | |
tree | c684ee0af28e0059fd7c7974775f10af5b4dc644 /src/tinyproxy.h | |
parent | 02d7474a0952015971439fce2f24ee66ef0217a3 (diff) |
Removed the "bool_t" type since it conflicts with the newer C standards.
The type was just replaced by "unsigned int" types.
Diffstat (limited to 'src/tinyproxy.h')
-rw-r--r-- | src/tinyproxy.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/tinyproxy.h b/src/tinyproxy.h index 6340488..8edba3a 100644 --- a/src/tinyproxy.h +++ b/src/tinyproxy.h @@ -1,4 +1,4 @@ -/* $Id: tinyproxy.h,v 1.35 2002-11-26 21:44:43 rjkaes Exp $ +/* $Id: tinyproxy.h,v 1.36 2002-12-04 17:06:14 rjkaes Exp $ * * See 'tinyproxy.c' for a detailed description. * @@ -27,17 +27,17 @@ struct config_s { char *logf_name; - bool_t syslog; + unsigned int syslog; /* boolean */ int port; char *stathost; - bool_t quit; + unsigned int quit; /* boolean */ char *username; char *group; char *ipAddr; #ifdef FILTER_ENABLE char *filter; - bool_t filter_url; - bool_t filter_extended; + unsigned int filter_url; /* boolean */ + unsigned int filter_extended; /* boolean */ #endif /* FILTER_ENABLE */ #ifdef XTINYPROXY_ENABLE char *my_domain; @@ -53,12 +53,12 @@ struct config_s { char* dnsserver_location; char* dnsserver_socket; - bool_t via_http_header; + unsigned int via_http_header; /* boolean */ }; /* Global Structures used in the program */ extern struct config_s config; -extern bool_t received_sighup; -extern bool_t processed_config_file; +extern unsigned int received_sighup; /* boolean */ +extern unsigned int processed_config_file; /* boolean */ #endif |