summaryrefslogtreecommitdiffstats
path: root/usr.sbin/syslogd/ringbuf.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix trailing whitespace and shorten long lines.bluhm2016-10-161-2/+3
| | | | No binary change.
* Remove some unneeded includes. OK deraadt@millert2015-07-061-2/+1
|
* Replace <sys/param.h> with <limits.h> and other less dirty headers wherederaadt2015-01-161-5/+6
| | | | | | | | | possible. Annotate <sys/param.h> lines with their current reasons. Switch to PATH_MAX, NGROUPS_MAX, HOST_NAME_MAX+1, LOGIN_NAME_MAX, etc. Change MIN() and MAX() to local definitions of MINIMUM() and MAXIMUM() where sensible to avoid pulling in the pollution. These are the files confirmed through binary verification. ok guenther, millert, doug (helped with the verification protocol)
* rearrange sanity checks to eliminate signed arithmatic, from stevesk@djm2005-09-211-5/+5
|
* reorder tests for improved sanity, from stevesk@djm2005-09-161-2/+5
|
* unneeded headers, from stevesk@djm2005-09-161-4/+1
|
* memory leak on SIGHUP for memory buffer logs, based on fix by Stephen Marley;djm2005-06-061-1/+9
| | | | ok avsm@
* extend memory buffer control protocol to support transmission of flags,djm2004-06-251-2/+5
| | | | | | | | starting with one to indicate whether the memory ringbuffers have overflowed; idea & ok markus@ NB if you are using memory buffered logging make sure you update both syslogd and syslogc _and_ restart syslogd because the protocol has changed
* staring->starting in commentavsm2004-02-261-2/+2
|
* Buffered logging for syslogd. Logs may be stored in memory buffers anddjm2004-01-041-0/+150
extracted using a small client. Useful for diskless systems. much feedback from deraadt@, canacar@, jmc@, jakob@ ; ok deraadt@