diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2000-03-11 20:43:25 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2000-03-11 20:43:25 +0000 |
commit | a6a6591f7c280a3be60631f2fd27eefb91c5c53b (patch) | |
tree | 266113c14d24abbf43c4754606bd821bb4c53f7c | |
parent | 10317d6701c01053bc31978aa2c50ca7e1b3a50c (diff) | |
download | tinyproxy-a6a6591f7c280a3be60631f2fd27eefb91c5c53b.tar.gz tinyproxy-a6a6591f7c280a3be60631f2fd27eefb91c5c53b.zip |
Added the support for the upstream proxy and also made the defaults for the
LOGFILE, USER, and PORT.
Diffstat (limited to '')
-rw-r--r-- | acconfig.h | 16 |
1 files changed, 12 insertions, 4 deletions
@@ -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 |