summaryrefslogtreecommitdiffstats
path: root/usr.sbin/syslogd/syslogd.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Early daemons like dhcpleased(8), slaacd(8), unwind(8), resolvd(8)bluhm2021-03-091-1/+5
* Established TCP and TLS sockets of syslogd did stay open foreverbluhm2020-09-141-2/+14
* When DNS lookup of an UDP loghost failed, syslogd(8) did close thebluhm2020-05-251-19/+24
* When syslogd(8) parent process terminates, the file cleanup codebluhm2019-07-051-5/+4
* React properly to the very unlikely cases where snprintf(3) maybluhm2019-07-021-13/+35
* When system calls indicate an error they return -1, not some arbitraryderaadt2019-06-281-6/+6
* Increase the socket buffer size for sendsyslog(2) to 1 MB. Duringbluhm2019-01-181-8/+22
* When parsing log lines in order to select syslog.conf(5) line blocks, supportschwarze2019-01-131-2/+3
* Honor SIGINT/QUIT when running in foregroundkn2018-11-291-2/+2
* Unsetting Initialized during syslogd die() is a relic from the timebluhm2018-08-311-4/+1
* allow shell globs to match program and hostname selector tags viadjm2018-07-171-3/+4
* Revert my change to ignore EIO errors when writing to log files.bluhm2017-11-241-2/+2
* When the partition of /var/log was full, syslogd(8) stopped writingbluhm2017-10-231-14/+45
* When syslogd writes some startup errors to stderr or console, theybluhm2017-10-051-16/+27
* I have touched more than half the source code lines of syslogd(8).bluhm2017-10-051-1/+17
* Also ignore "Can't assign requested address" error when sendto(2)bluhm2017-10-021-1/+2
* Document how ioctl(2) LIOCSFD on /dev/klog registers a socket pairbluhm2017-09-271-1/+2
* syslogd has special code to report errors before it has beenbluhm2017-09-171-6/+8
* When writing local output, syslogd ignores EAGAIN. Unfortunatelybluhm2017-09-171-3/+5
* In the default configuration syslogd(8) kept two *:514 UDP socketsbluhm2017-09-121-2/+18
* Kernel sendsyslog(2), libc syslog(3), and syslogd(8) restrict andbluhm2017-08-081-17/+19
* When syslogd(8) failed to open a logfile, the error message couldbluhm2017-04-281-4/+12
* Allow syslogd(8) to listen on multiple addresses for incomming TLSbluhm2017-04-251-26/+47
* Add syslogd(8) option -r to suppress the summary line for pipe andbluhm2017-04-171-8/+16
* Incoming TCP connections from clients fill the files of a log server.bluhm2017-04-071-6/+5
* The global variable Startup is not used anymore and can be deleted.bluhm2017-04-051-3/+1
* As we did not have nice log functions before, ttymsg() had to returnbluhm2017-04-051-6/+4
* The function logmsg() was used to generate local messages and tobluhm2017-04-051-46/+24
* Replace logerror() functions with generic log_warn() from log.c.bluhm2017-04-051-197/+116
* Replace all combinations of logerror() and die() with log.c fatal().bluhm2017-04-051-28/+16
* Replace logdebug() with generic log_debug() from log.c. Implementbluhm2017-04-051-86/+74
* Do not print a warning if closing the control socket fails. Itbluhm2017-04-051-3/+2
* fix semicolon after if statement in currently uncalled codejsg2017-03-281-2/+2
* After my previous commit, file descriptor fd_sendsys may be -1 ifbluhm2017-03-261-3/+4
* Keep syslogd(8) running as long as possible. Regular programsbluhm2017-03-241-30/+17
* Start to replace the home grown syslogd(8) internal debug and loggingbluhm2017-03-161-5/+19
* Convert the global variable fd_tls to a local one. Use separatebluhm2017-03-161-5/+19
* KNF spacing is more important than long linesderaadt2017-03-141-4/+4
* Syslogd accepted network input only for either IPv4 or IPv6. Tobluhm2017-01-021-42/+67
* When syslogd received a SIGHUP during startup, it died instead ofbluhm2016-12-301-1/+12
* If syslogd was started with a relative path, the program could notbluhm2016-12-271-3/+1
* When the kernel message buffer overflows, a message is printed bybluhm2016-12-231-2/+3
* Wrap lines earlier on tls_config_set_protocols(3)mestre2016-11-301-5/+5
* Check return value of tls_config_set_protocols(3) and log if it failsmestre2016-11-211-3/+9
* Remove the artificial maximum number of unix domain sockets inbluhm2016-10-171-6/+14
* Fix trailing whitespace and shorten long lines.bluhm2016-10-161-8/+10
* Use closefrom(4) in privsep parent and avoid some global filebluhm2016-10-161-4/+5
* Do an exec on itself in the privileged syslogd(8) parent processbluhm2016-10-061-5/+13
* Syslog RFC 5424 says you should add 1 to 6 digits with fractionsbluhm2016-10-061-16/+25
* When doing global remote logging and archiving, it is inconvenientbluhm2016-10-041-21/+90