From a6a6591f7c280a3be60631f2fd27eefb91c5c53b Mon Sep 17 00:00:00 2001 From: Robert James Kaes Date: Sat, 11 Mar 2000 20:43:25 +0000 Subject: [PATCH] Added the support for the upstream proxy and also made the defaults for the LOGFILE, USER, and PORT. --- acconfig.h | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/acconfig.h b/acconfig.h index 79bced0..c7ee27b 100644 --- a/acconfig.h +++ b/acconfig.h @@ -4,10 +4,13 @@ */ #undef XTINYPROXY -/* chris - undef'd here so that they can be set up in the configure script */ -#undef DEFAULT_LOG -#undef DEFAULT_PORT -#undef DEFAULT_USER +/* + * These are the defaults, but they can be changed by configure at compile + * time, or on the command line at runtime. + */ +#define DEFAULT_LOG "/var/log/tinyproxy" +#define DEFAULT_PORT 8888 +#define DEFAULT_USER "" /* * Define if you would like to include filtering code. @@ -18,3 +21,8 @@ * Define if you want to use the included GNU regex routine */ #undef USE_GNU_REGEX + +/* + * Define if you want to include upstream proxy support + */ +#undef UPSTREAM_PROXY