diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-09-16 20:12:29 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-09-16 20:12:29 +0000 |
commit | 606c8196a0d1795f00eaba07ee6315b12aabfdd3 (patch) | |
tree | fe0606a2d5323c1adae9b8745f9bed71d3891028 | |
parent | 490754594eddcf95d764818afdf935ed4d2f2fdf (diff) | |
download | tinyproxy-606c8196a0d1795f00eaba07ee6315b12aabfdd3.tar.gz tinyproxy-606c8196a0d1795f00eaba07ee6315b12aabfdd3.zip |
Added the configure variables to support the upstream proxy.
Diffstat (limited to '')
-rw-r--r-- | src/tinyproxy.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/tinyproxy.h b/src/tinyproxy.h index 418a463..e2091d4 100644 --- a/src/tinyproxy.h +++ b/src/tinyproxy.h @@ -1,4 +1,4 @@ -/* $Id: tinyproxy.h,v 1.15 2001-09-14 04:56:58 rjkaes Exp $ +/* $Id: tinyproxy.h,v 1.16 2001-09-16 20:12:29 rjkaes Exp $ * * See 'tinyproxy.c' for a detailed description. * @@ -104,6 +104,10 @@ struct config_s { char *tunnel_name; int tunnel_port; #endif /* TUNNEL_SUPPORT */ +#ifdef UPSTREAM_SUPPORT + char *upstream_name; + int upstream_port; +#endif /* UPSTREAM_SUPPORT */ char *pidpath; unsigned int idletimeout; @@ -114,7 +118,7 @@ struct conn_s { struct buffer_s *cbuffer, *sbuffer; bool_t simple_req; bool_t ssl; - char *output_message; + bool_t send_message; }; /* Global Structures used in the program */ |