aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/syslogd/syslogd.c
Commit message (Expand)AuthorAgeFilesLines
* syslogd: Allow killing when in foregroundDag-Erling Smørgrav2026-04-021-2/+2
* syslogd: Ignore getaddrinfo() errors if -ss is specifiedMark Johnston2024-10-191-0/+8
* Remove $FreeBSD$: one-line .c patternWarner Losh2023-08-231-2/+0
* spdx: The BSD-2-Clause-FreeBSD identifier is obsolete, drop -FreeBSDWarner Losh2023-07-251-1/+1
* syslogd: fix WITHOUT_INET buildsArtem Khramov2021-11-291-0/+2
* syslogd: Fix bug that caused -N to drop SecureMode if specified after -sjfranklin132021-10-131-1/+2
* syslogd: undo regression after r326573Eugene Grosbein2021-10-071-24/+17
* syslogd: Increase message size limitsDmitry Wagin2021-05-141-12/+21
* fix up documentation/comments: processname is not defined, but programnameJohn-Mark Gurney2020-12-101-1/+1
* Fix build post-r367455.Cy Schubert2020-11-071-1/+1
* syslogd: Stop trying to send remote messages through special socketsBryan Drewery2020-11-071-3/+3
* syslogd: Avoid trimming host names in RFC 5424 modeMark Johnston2020-10-091-2/+6
* Restore local kernel "prog" filtering lost in r332099.Bryan Drewery2020-04-281-12/+74
* Add property-based filters for syslogd.Andrey V. Elsukov2020-03-261-8/+327
* Fix compilation of world with WITHOUT_{INET,INET6}_SUPPORT or both set.Bjoern A. Zeeb2019-03-031-1/+7
* Use struct addrinfo instead of struct sockaddr_storageHiroki Sato2019-03-031-20/+31
* An IPv6 address matching should be fixed. Specifying an IPv6Hajimu UMEMOTO2019-02-241-2/+2
* Allow the use of slashes in process names of RFC 3164 formatted messages.Ed Schouten2018-07-071-1/+1
* Restore the order in which RFC 3164 messages with fac/pri are formatted.Ed Schouten2018-07-021-2/+3
* Still parse messages that don't contain an RFC 3164 timestamp.Ed Schouten2018-06-221-55/+57
* Fix bad logic in iovlist_truncate().Ed Schouten2018-06-181-2/+2
* Correct size for allocation and bzero of fdsr.Xin LI2018-04-231-2/+2
* Add RFC 5424 syslog message output to syslogd.Ed Schouten2018-04-151-160/+281
* Fix enough warnings that we can build syslogd on all targets at WARNS=6.Ed Schouten2018-04-071-3/+5
* Push RFC 5424 message format from logmsg() into fprintlog().Ed Schouten2018-04-061-72/+78
* Remove some places where error messages are prefixed with "syslogd".Ed Schouten2018-04-061-16/+16
* Properly respect the passed in hostname for RFC 5424 messages.Ed Schouten2018-04-061-1/+3
* Add RFC 5424 syslog message parsing to syslogd.Ed Schouten2018-04-061-120/+440
* Fix whitespace issues in r330034. No functional changes.Gleb Smirnoff2018-03-201-9/+9
* Fix two memory leaks in syslogdDavid Bright2018-02-261-3/+12
* When parsing remote messages, require them to have standard timestampGleb Smirnoff2017-12-051-60/+100
* Revert r325558 as it is incorrect.Gleb Smirnoff2017-11-281-14/+1
* Fix obvious NULL pointer dereference from r310350.Gleb Smirnoff2017-11-281-6/+5
* General further adoption of SPDX licensing ID tags.Pedro F. Giffuni2017-11-201-1/+3
* When parsing UDP messages skip optional hostname as described byGleb Smirnoff2017-11-081-1/+14
* Fix another logic bug that came out of recent syslogd refactoring and exposed byMaxim Sobolev2017-04-151-5/+10
* Since shutdown(2) on datagram socket is no longer a NOP after rev 316874Maxim Sobolev2017-04-151-2/+5
* Fix a regression which prevented an IPv6 address in a -b option fromHiroki Sato2017-03-201-1/+9
* syslogd: try to print out a more helpful message in socksetup(..) if/whenEnji Cooper2017-03-201-1/+10
* syslogd: fix dprintf in socksetup(..)Enji Cooper2017-03-201-1/+2
* syslogd: don't leak `f` on failure in cfline(..)Enji Cooper2017-03-201-0/+2
* syslogd: fix memory leaks in main(..) and allowaddr(..)Enji Cooper2017-03-151-12/+18
* Renumber copyright clause 4Warner Losh2017-02-281-1/+1
* Parameterize out the length of struct filed->f_lasttime as `MAXDATELEN`Enji Cooper2017-02-251-4/+6
* Sort sys/ #includes some moreEnji Cooper2017-02-071-2/+2
* Sort sys/ #includes and zap an unnecessary trailing space nearbyEnji Cooper2017-02-071-7/+7
* Use a flexible array for TypeNames instead of hardcoding the array lengthEnji Cooper2017-02-071-1/+1
* Fix typos in comments (returing -> returning)Enji Cooper2017-02-071-1/+1
* Fix a bug which caused not to create AF_LOCAL sockets when familyHiroki Sato2017-01-281-1/+2
* Add more #ifdef INET and INET6.Hiroki Sato2017-01-111-2/+25