Age | Commit message (Expand) | Author |
2015-09-03 | In sendsyslog(2) I got the plural s of messages right. The messages | Alexander Bluhm |
2015-09-03 | Instead of creating a line buffer on the stack, tcp_readcb() can | Alexander Bluhm |
2015-09-01 | Bind the *:514 UDP socket of syslogd with SO_REUSEADDR. This avoids | Alexander Bluhm |
2015-08-31 | The !prog and +host features allow to select log messages from a | Alexander Bluhm |
2015-08-27 | When syslogd is reloading a modified config, it does a reexec on | Alexander Bluhm |
2015-08-25 | strlcpy() accesses the source string until it finds NUL, even if | Alexander Bluhm |
2015-07-20 | Do not reconnect outgoing TCP connections too aggressively. In | Alexander Bluhm |
2015-07-20 | Do not accept sockets when syslogd reaches the file descriptor | Alexander Bluhm |
2015-07-19 | For incoming TCP message streams autodetect wether the method is | Alexander Bluhm |
2015-07-18 | As libtls previously did not set SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER, | Alexander Bluhm |
2015-07-16 | When incrementing msg, decrement msglen. Otherwise too much data | Alexander Bluhm |
2015-07-09 | Set f_hostname to NULL after free() to avoid a double free when | Alexander Bluhm |
2015-07-07 | When syslogd is invoked with -T listen_address, it creates a TCP | Alexander Bluhm |
2015-07-06 | Remove some unneeded includes. OK deraadt@ | Todd C. Miller |
2015-07-05 | Let syslogd run with non-blocking sockets. Replace the existing | Alexander Bluhm |
2015-07-02 | To avoid copying the socket creation code for upcoming TCP listen | Alexander Bluhm |
2015-06-30 | Sort the syslogd getopt string and switch cases according to the | Alexander Bluhm |
2015-06-30 | Add a -U command line switch for syslogd to specify an explict bind | Alexander Bluhm |
2015-06-29 | Add the possiblity to store all syslog messages received from a | Alexander Bluhm |
2015-06-15 | Implement a -F switch, that tells syslogd to stay in foreground. | Alexander Bluhm |
2015-06-12 | Close the lock pipe before dupping /dev/null to stdio. | Alexander Bluhm |
2015-06-12 | If fork fails, print an error message before exit. | Alexander Bluhm |
2015-03-30 | Use getline instead of fgets to allow arbitrary line length in | Tobias Stoeckmann |
2015-02-24 | Explain in a comment that atoi() is safe here. | Alexander Bluhm |
2015-02-22 | Rename tls_config_insecure_noverifyhost() to | Joel Sing |
2015-02-22 | Set the TLS ciphers to "compat" mode, restoring the previous behaviour. | Joel Sing |
2015-02-20 | When syslogd is writing over TLS, the error "SSL3_WRITE_PENDING:bad | Alexander Bluhm |
2015-02-14 | Call tls_config_set_protocols(TLS_PROTOCOLS_ALL) also if the hostname | Alexander Bluhm |
2015-02-13 | When too many -a requests on the syslogd command line cannot be | Alexander Bluhm |
2015-02-12 | Change TLS_PROTOCOLS_DEFAULT to be TLSv1.2 only. Add a TLS_PROTOCOLS_ALL | Joel Sing |
2015-02-10 | Make error check consistent in all recvfrom(2) callbacks. | Alexander Bluhm |
2015-02-09 | Fix format string of -m error message. | Alexander Bluhm |
2015-02-08 | Implement octet counting for sending syslog over TCP and TLS streams. | Alexander Bluhm |
2015-02-08 | Use ebuf[ERRBUFSIZE] instead of ebuf[256] everywhere. | Reyk Floeter |
2015-02-07 | use strtonum() instead of atoi(); ok bluhm | Theo de Raadt |
2015-02-06 | To get reliable TCP and TLS logging, report when messages get lost. | Alexander Bluhm |
2015-02-02 | As a result of the recommendations in RFC 5424, 5425, 5426 set the | Alexander Bluhm |
2015-01-31 | The error buffer in syslogd might be too small for the TLS errors. | Alexander Bluhm |
2015-01-28 | If not explicitly disabled, syslogd verifies the x509 certificate | Alexander Bluhm |
2015-01-19 | Replace HOST_NAME_MAX+1 with NI_MAXHOST when the hostname is used | Alexander Bluhm |
2015-01-18 | Implement sending syslog messages over TLS. | Alexander Bluhm |
2015-01-16 | Replace <sys/param.h> with <limits.h> and other less dirty headers where | Theo de Raadt |
2015-01-15 | When the connection to a TCP syslog server fails or the TCP connection | Alexander Bluhm |
2015-01-08 | Use the field f_file also for the forwarding file descriptor. Remove | Alexander Bluhm |
2015-01-02 | Use SIMPLEQ for syslogd filed list instead of manual list operations. | Alexander Bluhm |
2015-01-02 | When syslogd was sending via TCP, there was file descriptor leak | Alexander Bluhm |
2014-12-31 | Implement sending syslog messages over TCP streams. | Alexander Bluhm |
2014-12-10 | If default file descriptors (0, 1, 2) have to be assigned to /dev/null, | Tobias Stoeckmann |
2014-12-10 | File descriptors are of type int, not short. While at it, adjust remaining | Tobias Stoeckmann |
2014-12-07 | Fix regression for priority "none" (spotted by doug) of last commit by not | Tobias Stoeckmann |