Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
This is a commit which simply ran all C source code files
through GNU indent. No other modifications were made.
|
|
|
|
The notices have been changed to a more GNU look. Documentation
comments have been separated from the copyright header. I've tried to
keep all copyright notices intact. Some author contact details have
been updated.
|
|
I re-indented the source code using indent with the following options:
indent -kr -bad -bap -nut -i8 -l80 -psl -sob -ss -ncs
There are now _no_ tabs in the source files, and all indentation is
eight spaces. Lines are 80 characters long, and the procedure type is
on it's own line. Read the indent manual for more information about
what each option means.
|
|
Updated the copyright email addresses for Robert James Kaes. The
users.sourceforge.net address should always exist.
|
|
on other operating systems. (Used cf.sourceforge.net as the test
system for cross compiling.)
|
|
|
|
should never have added them in the first place. They don't really
buy anything, and they can hide bugs.
|
|
|
|
cleanly using a C++ compiler.
Changed the servers_waiting variable to an unsigned int, since the
number of servers waiting can never be negative, and added an assert()
to ensure this invariant.
|
|
The change was recommended in the C/C++ User Journal magazine.
|
|
variable to determine whether to wait for a connection from GDB.
|
|
the child handling function.
|
|
ID and wait for 10 seconds so we have time to connect gdb to the
child. This is needed if we want to use gdb against the child
process.
|
|
child is being closed.
|
|
the child request.
(child_main_loop): Added a call to truncate_log_file() when the log
file is to be rotated.
|
|
that the children can be properly destroyed.
|
|
code is activated whenever the SIGHUP signal is received.
|
|
connection. This is needed for debugging using "gdb".
|
|
tinyproxy more portable, since we can't be certain that "if (!ret_value)" would actually detect a mmap() error.
|
|
Therefore the thread.c file has been removed and this file replaces it.
These files are really just the thread.c and thread.h files with all the
threading stuff replaced with fork() code. Most of the code is identical.
|