diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2000-03-13 00:56:21 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2000-03-13 00:56:21 +0000 |
commit | c2ef08202b03bcc07e700585e29e943716734ce4 (patch) | |
tree | f01c678b3058dbd867caaacbfd7be8655bef00e6 /src | |
parent | c5bfeb33acff4c784b3ac21335d8514751a9f596 (diff) | |
download | tinyproxy-c2ef08202b03bcc07e700585e29e943716734ce4.tar.gz tinyproxy-c2ef08202b03bcc07e700585e29e943716734ce4.zip |
Remove the defines for DEFAULT_* and UPSTREAM (they've been moved into
acconfig.h and configure).
Diffstat (limited to 'src')
-rw-r--r-- | src/config.h | 31 |
1 files changed, 1 insertions, 30 deletions
diff --git a/src/config.h b/src/config.h index f5f7dda..0a8a766 100644 --- a/src/config.h +++ b/src/config.h @@ -1,4 +1,4 @@ -/* $Id: config.h,v 1.1.1.1 2000-02-16 17:32:22 sdyoung Exp $ +/* $Id: config.h,v 1.2 2000-03-13 00:56:21 rjkaes Exp $ * * Contains all the tune-able variables which are used by tinyproxy. * Modifications made to these variables WILL change the default behaviour @@ -22,35 +22,6 @@ #ifndef _CONFIG_H_ #define _CONFIG_H_ 1 -/* Change these if you want */ - -/* Default log file */ -#ifndef DEFAULT_LOG -#define DEFAULT_LOG "/usr/local/var/log/tinyproxy.log" -#endif - -/* Default port tinyproxy listens on */ -#ifndef DEFAULT_PORT -#define DEFAULT_PORT 8080 -#endif - -/* Default user to change to after */ -#ifndef DEFAULT_USER -#define DEFAULT_USER "nobody" -#endif - -/* - * Define this if you want to have all requests sent to a particular machine. - * This is useful if you have another proxy further upstream which you must - * send your HTTP requests through. - */ -#undef UPSTREAM - -#ifdef UPSTREAM -#define UPSTREAM_PROXY_NAME "name.of.upstream.machine" -#define UPSTREAM_PROXY_PORT 80 -#endif - /* * Define this if you want tinyproxy to use /proc/loadavg to determine * system load (Linux only, I think) |