summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert James Kaes <rjkaes@users.sourceforge.net>2000-03-11 20:43:25 +0000
committerRobert James Kaes <rjkaes@users.sourceforge.net>2000-03-11 20:43:25 +0000
commita6a6591f7c280a3be60631f2fd27eefb91c5c53b (patch)
tree266113c14d24abbf43c4754606bd821bb4c53f7c
parent10317d6701c01053bc31978aa2c50ca7e1b3a50c (diff)
downloadtinyproxy-a6a6591f7c280a3be60631f2fd27eefb91c5c53b.tar.gz
tinyproxy-a6a6591f7c280a3be60631f2fd27eefb91c5c53b.zip
Added the support for the upstream proxy and also made the defaults for the
LOGFILE, USER, and PORT.
-rw-r--r--acconfig.h16
1 files 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