summaryrefslogtreecommitdiffhomepage
path: root/ChangeLog
AgeCommit message (Collapse)Author
2016-12-20Add placeholder ChangeLog to keep automake happyMichael Adam
Closes #60 Signed-off-by: Michael Adam <obnox@samba.org>
2010-01-25Remove obsolete ChangeLog fileMukund Sivaraman
2004-08-10Merged in changes from 1.6.3Robert James Kaes
2004-01-26# Updated change logRobert James Kaes
2003-10-17Merged in changes from the 1.6.2 release. (Fixes for the filtering codeRobert James Kaes
and the HTML installation script.)
2003-08-07# Merged in changes from the stable 1.6 branch.Robert James Kaes
2003-07-14# Updated ChangeLogRobert James Kaes
2003-06-26# Updated the ChangeLogRobert James Kaes
2003-06-25# Updated the changelogRobert James Kaes
2003-06-20# Updated ChangeLogRobert James Kaes
2003-05-30# Updated ChangeLogRobert James Kaes
2003-04-16# Updated change logRobert James Kaes
2003-04-01# Updated change log (should have done this _before_ the tagging of course.)Robert James Kaes
2003-03-13# Updated ChangeLog with Steven Young's log of changes to include theRobert James Kaes
variable substitution code.
2003-03-10# Updated ChangeLogRobert James Kaes
2003-01-27# Updated changelogRobert James Kaes
2003-01-22# Added the 1.5.2 release change logRobert James Kaes
2002-12-04# Updated the change logRobert James Kaes
2002-11-29# Updated change log with the latest changesRobert James Kaes
2002-11-13# Updated the changelog file to include all the changes since 1.5.1Robert James Kaes
2002-08-09# Added the release not to the changelogRobert James Kaes
2002-07-11# Updated the ChangeLogRobert James Kaes
2002-06-27Updated the ChangeLog.Robert James Kaes
2002-06-18Updated the ChangeLogRobert James Kaes
2002-06-07Updated the ChangeLogRobert James Kaes
2002-06-05Updated ChangeLogRobert James Kaes
2002-05-31Updated the ChangeLogRobert James Kaes
2002-05-29Updated the ChangeLog for the 1.5.1pre3 release.Robert James Kaes
2002-05-29Updated ChangeLog for the 1.5.1pre2 release.Robert James Kaes
2002-05-27Updated the ChangeLog to include new changes to various files.Robert James Kaes
2002-05-27Reformated the ChangeLog.Robert James Kaes
2002-05-27Changes to tinyproxy relating to signals and the copyright dates.Robert James Kaes
2002-05-26Updated the ChangeLog. This was pulled from the CVS logs using Emacs.Robert James Kaes
First time I've done this, but it seemed to work pretty well.
2002-05-23A whole list of changes relating to the new "dnsserver" process and theRobert James Kaes
reorganization of the source files.
2002-05-17Added release information for version 1.3.1 and 1.3.0Robert James Kaes
2002-05-17Added more release information.Robert James Kaes
2002-05-17Fixed on inaccurate entry (the variable was made _signed_ to preserve theRobert James Kaes
negative value.) Also, added in "Released tinyproxy ..." information so that changes between versions can be better determined.
2002-05-14Moved the definition of the struct buffer_s into the buffer.c file and outRobert James Kaes
of the buffer.h file. This also required the removal of the BUFFER_SIZE macro, and replace it with the buffer_size() function.
2002-05-13Added a "tail" pointer to the vector to make insertions more efficient.Robert James Kaes
2002-05-13Thanks to Justin Guyett for making the hashmap_insert() function use aRobert James Kaes
constant time insert. Explanation: new enteries are added to the _front_ of the chain, rather than search to the end.
2002-05-13Fixed up a potential SEGFAULT if memory for an entry could not beRobert James Kaes
allocated. Also, thanks to Justin Guyett for finding a problem the hashmap_remove() function. There was a problem where an entry's "prev" pointer could be pointing to freed memory. Finally, renamed all "maps" to bucket to make the source more understandable.
2002-05-10Fixed up the installation of the tinyproxy.conf file. The file is onlyRobert James Kaes
installed if it doesn't already exist (rather than giving a make error.)
2002-05-08--with-config now supports absolute paths as per James Flemer's request.Robert James Kaes
2002-05-08Removed the request logging in the tunnel because it breaks the tunnelRobert James Kaes
concept since it blocks waiting for information from the client before any data from the remote is relayed.
2002-05-02Added code to figure out and install the configuration file.Robert James Kaes
2002-04-29Added the reason why servers_waiting needs to be a signed integer.Robert James Kaes
2002-04-28Added more error checking in process_client_headers() andRobert James Kaes
process_server_headers() functions. Also, better reporting of errors back to the client.
2002-04-28Fixed up the error detection code when relating the pthread functions.Robert James Kaes
They return 0 if OK, and a positive error code. Cleaned up the status setting code in thread_main(). Thanks to Hans-Georg Bork for fixing the problem in thread_pool_create() where the status wasn't set early enough to allow all the threads to be created. Added additional logging information to let the admin know what is happening with the thread creation.
2002-04-26Changed the len type to ssize_t because we need to detect errors in theRobert James Kaes
recv() call. Thanks to Tom Cross for discovering this bug.
2002-04-26Check the return value of hashmap_first()Robert James Kaes