Fixed on inaccurate entry (the variable was made _signed_ to preserve the
negative value.) Also, added in "Released tinyproxy ..." information so that changes between versions can be better determined.
This commit is contained in:
parent
700f129750
commit
b3af1a8740
30
ChangeLog
30
ChangeLog
@ -1,8 +1,8 @@
|
|||||||
2002-05-13 Robert James Kaes <rjkaes@flarenet.com>
|
2002-05-13 Robert James Kaes <rjkaes@flarenet.com>
|
||||||
|
|
||||||
* src/buffer.h (_TINYPROXY_BUFFER_H_): Moved the definition of the
|
* src/buffer.h: Moved the definition of the buffer_s structure.
|
||||||
buffer_s structure. Data hiding is a good thing. Also, replaced
|
Data hiding is a good thing. Also, replaced the BUFFER_SIZE
|
||||||
the BUFFER_SIZE macro with a buffer_size() function.
|
macro with a buffer_size() function.
|
||||||
|
|
||||||
* src/vector.c: Added the "tail" pointer to make insertions more
|
* src/vector.c: Added the "tail" pointer to make insertions more
|
||||||
efficient.
|
efficient.
|
||||||
@ -21,6 +21,10 @@
|
|||||||
test so that the file is only installed if it doesn't already
|
test so that the file is only installed if it doesn't already
|
||||||
exist.
|
exist.
|
||||||
|
|
||||||
|
2002-05-09 Robert James Kaes <rjkaes@flarenet.com>
|
||||||
|
|
||||||
|
Released tinyproxy 1.5.0 (2002-05-09)
|
||||||
|
|
||||||
2002-05-08 Robert James Kaes <rjkaes@flarenet.com>
|
2002-05-08 Robert James Kaes <rjkaes@flarenet.com>
|
||||||
|
|
||||||
* configure.ac: The --with-config option now supports absolute
|
* configure.ac: The --with-config option now supports absolute
|
||||||
@ -216,7 +220,7 @@
|
|||||||
* src/utils.c (chomp): Added an assert to detect a design error.
|
* src/utils.c (chomp): Added an assert to detect a design error.
|
||||||
|
|
||||||
* src/reqs.c (read_request_line): Fixed the return type to be an
|
* src/reqs.c (read_request_line): Fixed the return type to be an
|
||||||
unsigned variable, so that we preserve a negative return value
|
signed variable, so that we preserve a negative return value
|
||||||
upon an error.
|
upon an error.
|
||||||
|
|
||||||
* src/sock.c (readline): Added a test for allocating enough memory
|
* src/sock.c (readline): Added a test for allocating enough memory
|
||||||
@ -472,6 +476,8 @@
|
|||||||
|
|
||||||
2001-11-21 Robert James Kaes <rjkaes@flarenet.com>
|
2001-11-21 Robert James Kaes <rjkaes@flarenet.com>
|
||||||
|
|
||||||
|
Released tinyproxy 1.4.3 (2001-11-21)
|
||||||
|
|
||||||
* src/utils.c (chomp): Replaced the "trim()" function in reqs.c
|
* src/utils.c (chomp): Replaced the "trim()" function in reqs.c
|
||||||
with the new chomp() function which has similar semantics as the
|
with the new chomp() function which has similar semantics as the
|
||||||
chomp() function in Perl.
|
chomp() function in Perl.
|
||||||
@ -699,6 +705,10 @@
|
|||||||
* src/reqs.c (compare_header): Removed the call to xstrstr() since
|
* src/reqs.c (compare_header): Removed the call to xstrstr() since
|
||||||
it's been removed from the source.
|
it's been removed from the source.
|
||||||
|
|
||||||
|
2001-08-29 Robert James Kaes <rjkaes@flarenet.com>
|
||||||
|
|
||||||
|
Released tinyproxy 1.4.2 (2001-08-29)
|
||||||
|
|
||||||
2001-08-28 Robert James Kaes <rjkaes@flarenet.com>
|
2001-08-28 Robert James Kaes <rjkaes@flarenet.com>
|
||||||
|
|
||||||
* src/log.c (log_message): Handle a debug enabled compile better.
|
* src/log.c (log_message): Handle a debug enabled compile better.
|
||||||
@ -739,6 +749,8 @@
|
|||||||
|
|
||||||
2001-08-26 Robert James Kaes <rjkaes@flarenet.com>
|
2001-08-26 Robert James Kaes <rjkaes@flarenet.com>
|
||||||
|
|
||||||
|
Released tinyproxy 1.4.1 (2001-08-26)
|
||||||
|
|
||||||
* src/utils.c (httperr): Split the headers from the actual message
|
* src/utils.c (httperr): Split the headers from the actual message
|
||||||
and include more headers like Date, Server, Content-Length,
|
and include more headers like Date, Server, Content-Length,
|
||||||
etc. Also set the type for the error message to const char*.
|
etc. Also set the type for the error message to const char*.
|
||||||
@ -790,6 +802,10 @@
|
|||||||
copyright message. Also now include the target system name to the
|
copyright message. Also now include the target system name to the
|
||||||
version message.
|
version message.
|
||||||
|
|
||||||
|
2001-06-24 Robert James Kaes <rjkaes@flarenet.com>
|
||||||
|
|
||||||
|
Released tinyproxy 1.4.0 (2001-06-24)
|
||||||
|
|
||||||
2001-06-06 Robert James Kaes <rjkaes@flarenet.com>
|
2001-06-06 Robert James Kaes <rjkaes@flarenet.com>
|
||||||
|
|
||||||
* configure.in: Total reorganization.
|
* configure.in: Total reorganization.
|
||||||
@ -1167,6 +1183,10 @@
|
|||||||
#include <sys/types.h> line so tinyproxy would compile cleanly on
|
#include <sys/types.h> line so tinyproxy would compile cleanly on
|
||||||
FreeBSD systems.
|
FreeBSD systems.
|
||||||
|
|
||||||
|
2000-04-03 00:00 rjkaes
|
||||||
|
|
||||||
|
Released tinyproxy 1.3.3 (2000-04-03)
|
||||||
|
|
||||||
2000-03-31 17:55 rjkaes
|
2000-03-31 17:55 rjkaes
|
||||||
|
|
||||||
* ChangeLog, src/reqs.c: Fixed a bug with the path in clientreq. If
|
* ChangeLog, src/reqs.c: Fixed a bug with the path in clientreq. If
|
||||||
@ -1307,6 +1327,8 @@
|
|||||||
|
|
||||||
2000-02-16 12:32 sdyoung
|
2000-02-16 12:32 sdyoung
|
||||||
|
|
||||||
|
Released tinyproxy 1.3.2 (2000-02-16)
|
||||||
|
|
||||||
* AUTHORS, COPYING, ChangeLog, INSTALL, Makefile.am, Makefile.in,
|
* AUTHORS, COPYING, ChangeLog, INSTALL, Makefile.am, Makefile.in,
|
||||||
NEWS, README, THANKS, aclocal.m4, BUGS, INSTALL.configure,
|
NEWS, README, THANKS, aclocal.m4, BUGS, INSTALL.configure,
|
||||||
acconfig.h, configure, configure.in, install-sh, missing,
|
acconfig.h, configure, configure.in, install-sh, missing,
|
||||||
|
Loading…
Reference in New Issue
Block a user