diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-06-05 17:24:40 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-06-05 17:24:40 +0000 |
commit | dfb83160f01fa778029bc40480f6a297a0becf6a (patch) | |
tree | ab25b40308335f377d25200a5c830d8396cd8857 | |
parent | 38b2f7300425d1413c24d804d4b3b53b126f0f5f (diff) | |
download | tinyproxy-dfb83160f01fa778029bc40480f6a297a0becf6a.tar.gz tinyproxy-dfb83160f01fa778029bc40480f6a297a0becf6a.zip |
Updated ChangeLog
Diffstat (limited to '')
-rw-r--r-- | ChangeLog | 27 |
1 files changed, 27 insertions, 0 deletions
@@ -1,3 +1,30 @@ +2002-06-05 Robert James Kaes <rjkaes@flarenet.com> + + * doc/Makefile.am: + Added the "filter-howto.txt" file to the distribution. + + * doc/filter-howto.txt: + Added a short filtering HOWTO document from Patrick L. McGillan. + + * src/child.c (child_main): + Added a DEBUG call to let me know which process has accepted a + connection. This is needed for debugging using "gdb". + + * src/heap.c (malloc_shared_memory): + Removed the assert() call for shared_file since it's now a static + variable. + + * src/acl.c (acl_string_processing): + Moved the string processing code out of check_acl() and into it's + own function because it now does two (2) tests. If the ACL string + is a complete host name, in other words doesn't start with a + period, than a reverse DNS look-up is done on the host name and + compared to the IP address of the client; otherwise, the normal + text string comparison is done. + (check_acl): Moved the string text out of the function and removed + some logging code by jumping to the "Deny" code at the end of the + function. + 2002-05-31 Robert James Kaes <rjkaes@flarenet.com> * src/utils.c (create_file_safely): |