summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert James Kaes <rjkaes@users.sourceforge.net>2002-06-07 18:48:23 +0000
committerRobert James Kaes <rjkaes@users.sourceforge.net>2002-06-07 18:48:23 +0000
commit5a94b8e90db557faca9af4afbaecef67ea041566 (patch)
treec086f3ef95ecd7c5fb88cc10d352e44d6e681e1f
parentd2de74a20524aa8a1c9847d5ac13e0c68e8c2e96 (diff)
downloadtinyproxy-5a94b8e90db557faca9af4afbaecef67ea041566.tar.gz
tinyproxy-5a94b8e90db557faca9af4afbaecef67ea041566.zip
Updated the ChangeLog
Diffstat (limited to '')
-rw-r--r--ChangeLog49
1 files changed, 49 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 08611bc..4aa98fa 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,52 @@
+2002-06-07 Robert James Kaes <rjkaes@flarenet.com>
+
+ * src/filter.c, src/filter.h:
+ Added code to handle the "FilterDefaultDeny" directive. The
+ filter_set_default_policy() function is used to select the default
+ policy (either default allow or default deny) for the filtering
+ code. Also, the two filtering functions now support the policy
+ code.
+
+ * doc/tinyproxy.conf, src/grammar.y, src/scanner.l:
+ Added the "FilterDefaultDeny" directive to allow the user to
+ select whether the default policy of the filter is to allow
+ everything which isn't denied, or to deny everything which isn't
+ allowed.
+
+2002-06-06 Robert James Kaes <rjkaes@flarenet.com>
+
+ * src/reqs.c:
+ A bunch of changes from Petr Lampa that add transparent proxy
+ support to tinyproxy. The additional code is in
+ process_request(), but Petr also had to change around some of the
+ other functions (like process_client_headers and
+ handle_connection.) Note: Right now this code has not been
+ tested, but it is believed to work. To enable run ./configure
+ --enable-transparent-proxy
+
+ * src/filter.c (filter_domain):
+ Removed code which stripped of a port number from the host name.
+ The "host" variable will _always_ be just the name by the time
+ filter_domain() is called.
+
+ * src/tinyproxy.c (display_usage):
+ Added a message indicating whether transparent proxy support has
+ been compiled in.
+
+ * configure.ac:
+ Added the "--enable-transparent-proxy" flag and moved the
+ AH_TEMPLATE() macros to _outside_ the "if" tests.
+
+ * src/grammar.y:
+ Added a warning message to the Bind directive stating that it will
+ be ignored if "transparent proxy" has been compiled into
+ tinyproxy.
+
+ * src/log.c (send_stored_logs):
+ Actually included the code to output the stored logs. Plus, there
+ was a bug with how I was calling the hashmap_is_end() function.
+ This has now been fixed.
+
2002-06-05 Robert James Kaes <rjkaes@flarenet.com>
* doc/Makefile.am: