summaryrefslogtreecommitdiff
path: root/usr.sbin/syslogd
AgeCommit message (Expand)Author
2015-09-29Delete the final, inscrutable NOSTRICT and VARARGS lint commentsPhilip Guenther
2015-09-20Misuse of libevent in TLS read and write might have caused strangeAlexander Bluhm
2015-09-12It is not necessary to reset errno to 0 since we use logerrorx().Alexander Bluhm
2015-09-11Instead of printing errno strings here and there, add a logerrorx()Alexander Bluhm
2015-09-11Syslog does not need the global list of TCP clients, libevent handlesAlexander Bluhm
2015-09-10Instead of having global variables containing the libevent structures,Alexander Bluhm
2015-09-10Convert syslogd TLS connect to use handshake callback. The bt_hostnameAlexander Bluhm
2015-09-10reduce .Nd to one line and kill .Tn while hereIngo Schwarze
2015-09-10Make syslogd compile again after recent libtls changes. Adapt toAlexander Bluhm
2015-09-09To double the receive buffer of a socketpair does not help as sendingAlexander Bluhm
2015-09-03In sendsyslog(2) I got the plural s of messages right. The messagesAlexander Bluhm
2015-09-03Instead of creating a line buffer on the stack, tcp_readcb() canAlexander Bluhm
2015-09-01Bind the *:514 UDP socket of syslogd with SO_REUSEADDR. This avoidsAlexander Bluhm
2015-08-31The !prog and +host features allow to select log messages from aAlexander Bluhm
2015-08-27When syslogd is reloading a modified config, it does a reexec onAlexander Bluhm
2015-08-25strlcpy() accesses the source string until it finds NUL, even ifAlexander Bluhm
2015-07-20Do not reconnect outgoing TCP connections too aggressively. InAlexander Bluhm
2015-07-20Do not accept sockets when syslogd reaches the file descriptorAlexander Bluhm
2015-07-19For incoming TCP message streams autodetect wether the method isAlexander Bluhm
2015-07-18As libtls previously did not set SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER,Alexander Bluhm
2015-07-16When incrementing msg, decrement msglen. Otherwise too much dataAlexander Bluhm
2015-07-09During fd passing, receive_fd() tries to read the result value andAlexander Bluhm
2015-07-09Set f_hostname to NULL after free() to avoid a double free whenAlexander Bluhm
2015-07-07Do not explain multiple times how to put brackets around IPv6Alexander Bluhm
2015-07-07When syslogd is invoked with -T listen_address, it creates a TCPAlexander Bluhm
2015-07-06Remove some unneeded includes. OK deraadt@Todd C. Miller
2015-07-05Let syslogd run with non-blocking sockets. Replace the existingAlexander Bluhm
2015-07-02To avoid copying the socket creation code for upcoming TCP listenAlexander Bluhm
2015-06-30Sort the syslogd getopt string and switch cases according to theAlexander Bluhm
2015-06-30Add a -U command line switch for syslogd to specify an explict bindAlexander Bluhm
2015-06-29Add the possiblity to store all syslog messages received from aAlexander Bluhm
2015-06-15put -F before -f in the options list;Jason McIntyre
2015-06-15Implement a -F switch, that tells syslogd to stay in foreground.Alexander Bluhm
2015-06-12Close the lock pipe before dupping /dev/null to stdio.Alexander Bluhm
2015-06-12If fork fails, print an error message before exit.Alexander Bluhm
2015-03-30Use getline instead of fgets to allow arbitrary line length inTobias Stoeckmann
2015-02-24Explain in a comment that atoi() is safe here.Alexander Bluhm
2015-02-22Rename tls_config_insecure_noverifyhost() toJoel Sing
2015-02-22Set the TLS ciphers to "compat" mode, restoring the previous behaviour.Joel Sing
2015-02-20When syslogd is writing over TLS, the error "SSL3_WRITE_PENDING:badAlexander Bluhm
2015-02-14Call tls_config_set_protocols(TLS_PROTOCOLS_ALL) also if the hostnameAlexander Bluhm
2015-02-13When too many -a requests on the syslogd command line cannot beAlexander Bluhm
2015-02-12Change TLS_PROTOCOLS_DEFAULT to be TLSv1.2 only. Add a TLS_PROTOCOLS_ALLJoel Sing
2015-02-10Oops, I accidently reverted the two previous commits in syslog.conf.5.Alexander Bluhm
2015-02-10Make error check consistent in all recvfrom(2) callbacks.Alexander Bluhm
2015-02-10Fix typo in previous commit.Alexander Bluhm
2015-02-10Specifying the port is non-optional for (non-TLS) syslog over TCP, ok bluhm@Stuart Henderson
2015-02-09Fix format string of -m error message.Alexander Bluhm
2015-02-08Implement octet counting for sending syslog over TCP and TLS streams.Alexander Bluhm
2015-02-08Use ebuf[ERRBUFSIZE] instead of ebuf[256] everywhere.Reyk Floeter