diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-08-26 21:18:04 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-08-26 21:18:04 +0000 |
commit | cebda5913d063c44be4a86e271f2261e91944986 (patch) | |
tree | 997d791433bfd49ddb6010b0fbf23eed36ed142d /src | |
parent | 5530451545f3562dcc836f0c39998bcf105a0339 (diff) | |
download | tinyproxy-cebda5913d063c44be4a86e271f2261e91944986.tar.gz tinyproxy-cebda5913d063c44be4a86e271f2261e91944986.zip |
Removed the config.anonymous entry since we've moved the information into
anonymous.c file.
Diffstat (limited to '')
-rw-r--r-- | src/tinyproxy.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tinyproxy.h b/src/tinyproxy.h index de0fed7..0b4460b 100644 --- a/src/tinyproxy.h +++ b/src/tinyproxy.h @@ -1,4 +1,4 @@ -/* $Id: tinyproxy.h,v 1.10 2001-06-06 19:33:26 rjkaes Exp $ +/* $Id: tinyproxy.h,v 1.11 2001-08-26 21:18:04 rjkaes Exp $ * * See 'tinyproxy.c' for a detailed description. * @@ -95,7 +95,6 @@ struct config_s { bool_t quit; char *username; char *group; - bool_t anonymous; char *ipAddr; #ifdef FILTER_ENABLE char *filter; @@ -109,6 +108,7 @@ struct config_s { #endif /* TUNNEL_SUPPORT */ char *pidpath; unsigned int idletimeout; + }; struct conn_s { |