diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-06-06 20:28:02 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-06-06 20:28:02 +0000 |
commit | 06d38ce529791671ae30232e1513b3f94c542635 (patch) | |
tree | b88124b7326472cef1657dd0f58d2de1c7042add /src | |
parent | 51bbed6f760fa98efea2c87b3e0e7eb694234f28 (diff) | |
download | tinyproxy-06d38ce529791671ae30232e1513b3f94c542635.tar.gz tinyproxy-06d38ce529791671ae30232e1513b3f94c542635.zip |
(display_usage): Added a message indicating whether transparent proxy support has been compiled in.
Diffstat (limited to '')
-rw-r--r-- | src/tinyproxy.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/tinyproxy.c b/src/tinyproxy.c index 7c3cdee..c669228 100644 --- a/src/tinyproxy.c +++ b/src/tinyproxy.c @@ -1,4 +1,4 @@ -/* $Id: tinyproxy.c,v 1.35 2002-05-31 18:24:36 rjkaes Exp $ +/* $Id: tinyproxy.c,v 1.36 2002-06-06 20:28:02 rjkaes Exp $ * * The initialize routine. Basically sets up all the initial stuff (logfile, * listening socket, config options, etc.) and then sits there and loops @@ -144,6 +144,9 @@ Options:\n\ #ifdef TUNNEL_SUPPORT printf(" TCP Tunnelling\n"); #endif /* TUNNEL_SUPPORT */ +#ifdef TRANSPARENT_PROXY + printf(" Transparent Proxy Support\n"); +#endif /* TRANSPARENT_PROXY */ } int |