summaryrefslogtreecommitdiffstats
path: root/usr.sbin/syslogd/syslogd.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* 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
* Document certificate handling in syslogd(8) man page.bluhm2016-09-231-4/+4
* With the new large socket buffer sizes, syslogd could use more mbufsbluhm2016-09-231-3/+18
* Add an option to give syslogd a server CA that is used to validatebluhm2016-09-211-7/+22
* Add more information to syslogd tls config error messages.bluhm2016-08-291-9/+23
* By using the new tls_config_load_file() feature, syslogd(8) certificatebluhm2016-08-171-111/+38
* Adjust existing tls_config_set_cipher() callers for TLS cipher groupjsing2016-07-131-2/+2
* Add support for TLS client certificates in syslogd. This allows abluhm2016-07-121-5/+40
* Allow space-deliminated fields in syslog.conf in addition tomillert2016-07-061-8/+8
* Avoid printing f->f_lasttime and/or f->f_prevhost if they are empty.millert2016-07-011-8/+24
* Include errno string in log message when we fail to open a file.millert2016-07-011-5/+5
* Eliminate superfluous 3rd params in fcntl(F_GETFL) calls.krw2016-04-021-5/+7
* Prevent an integer overflow in syslogd when parsing the priority.bluhm2016-02-171-15/+34
* When running syslogd in debug mode, use a callback to print thebluhm2015-12-291-1/+10
* Adding mark messages to log files was broken since OpenBSD 5.7.bluhm2015-12-161-1/+8
* If loading the CA certificates at startup had failed, the syslogdbluhm2015-10-241-2/+7
* If writing to a tty blocks, syslogd forked and tried to write againbluhm2015-10-231-5/+3
* Do some cleanup in syslogd ttymsg(). Add a debug message when thebluhm2015-10-211-9/+6
* In syslogd replace the dprintf() macro with a logdebug() functionbluhm2015-10-151-73/+84
* Pass unsigned char to isdigit(3).bluhm2015-10-111-3/+3
* Userspace doesn't need to use SUN_LEN(): connect() and bind() must acceptguenther2015-10-111-5/+2
* normalize a few more tame request orderings, to help reviewderaadt2015-10-101-2/+2
* If syslogd is started with -S, it accepts TLS connections to receivebluhm2015-10-091-43/+181
* A fork(2) is used in ttymsg() to delay the message to a tty if itbluhm2015-10-091-2/+2
* catch up to tame() -> pledge() renamederaadt2015-10-091-3/+3
* Tame syslogd privsep child with "stdio rpath unix inet recvfd".bluhm2015-10-091-1/+4
* Delete the final, inscrutable NOSTRICT and VARARGS lint commentsguenther2015-09-291-3/+2
* It is not necessary to reset errno to 0 since we use logerrorx().bluhm2015-09-121-5/+1
* Instead of printing errno strings here and there, add a logerrorx()bluhm2015-09-111-52/+66
* Syslog does not need the global list of TCP clients, libevent handlesbluhm2015-09-111-8/+1
* Instead of having global variables containing the libevent structures,bluhm2015-09-101-46/+64
* Convert syslogd TLS connect to use handshake callback. The bt_hostnamebluhm2015-09-101-37/+36
* To double the receive buffer of a socketpair does not help as sendingbluhm2015-09-091-14/+25
* In sendsyslog(2) I got the plural s of messages right. The messagesbluhm2015-09-031-7/+9
* Instead of creating a line buffer on the stack, tcp_readcb() canbluhm2015-09-031-7/+5
* Bind the *:514 UDP socket of syslogd with SO_REUSEADDR. This avoidsbluhm2015-09-011-7/+8
* The !prog and +host features allow to select log messages from abluhm2015-08-311-27/+9
* When syslogd is reloading a modified config, it does a reexec onbluhm2015-08-271-4/+8
* strlcpy() accesses the source string until it finds NUL, even ifbluhm2015-08-251-3/+5
* Do not reconnect outgoing TCP connections too aggressively. Inbluhm2015-07-201-18/+19
* Do not accept sockets when syslogd reaches the file descriptorbluhm2015-07-201-19/+58
* For incoming TCP message streams autodetect wether the method isbluhm2015-07-191-28/+114
* As libtls previously did not set SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER,bluhm2015-07-181-16/+2
* When incrementing msg, decrement msglen. Otherwise too much databluhm2015-07-161-2/+4