summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert James Kaes <rjkaes@users.sourceforge.net>2002-04-22 19:37:15 +0000
committerRobert James Kaes <rjkaes@users.sourceforge.net>2002-04-22 19:37:15 +0000
commitc648ed1bc5505b92a2cc447c2fa3109418ea657b (patch)
tree8cf536738c56bae2293c4d2a6f7271697e955c44
parent08077cc9e113c2a9c7b1ff14bab38d7648d759a0 (diff)
downloadtinyproxy-c648ed1bc5505b92a2cc447c2fa3109418ea657b.tar.gz
tinyproxy-c648ed1bc5505b92a2cc447c2fa3109418ea657b.zip
Added the "Bind" directive.
Fixed up the log_message function to store messages until the log file has been created. "Proxy-Connection" is not sent along to the remote message.
-rw-r--r--ChangeLog17
1 files changed, 17 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 678fa96..0702e99 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,20 @@
+2002-04-22 Robert James Kaes <rjkaes@flarenet.com>
+
+ * src/log.c (send_stored_logs): Added this function since the
+ log_message() function will now stored the messages if the config
+ file has not been processed yet. This function is called from
+ within main() to output the messages to the log file _after_ it's
+ been initialized.
+
+ * src/reqs.c (process_client_headers): Added the
+ "Proxy-Connection" header to the list of client headers we don't
+ forward to the remote machine.
+
+ Added the the "Bind" directive. This is used to indicate which IP
+ address in a multi-homed machine you would like tinyproxy to bind
+ out-going connections to. This complements the "Listen" directive
+ for incoming connections.
+
2002-04-18 Robert James Kaes <rjkaes@flarenet.com>
* src/sock.c (lookup_domain): Removed the call to inet_aton()