summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* class exit function was missing, causing segfaultRainer Gerhards2008-03-121-0/+11
|
* bugfix: rsyslogd segfaulted when imfile read an empty line - thanks toRainer Gerhards2008-03-122-14/+25
| | | | Johnny Tan for an excellent bug report
* bugfix: not properly initialized data could cause several segfaults ifRainer Gerhards2008-03-122-2/+4
| | | | | there were errors in the config file - thanks to varmojfekoj for the patch
* implemented module unload handling (required a number of interface changes)Rainer Gerhards2008-03-1131-158/+679
|
* bugfix: debug.c now survives module unloads in all cases tracker:Rainer Gerhards2008-03-103-34/+78
| | | | http://bugzilla.adiscon.com/show_bug.cgi?id=2
* fixed forgotten library file name changeRainer Gerhards2008-03-101-1/+1
|
* some cleanupRainer Gerhards2008-03-078-19/+0
|
* renamed library module file names to lm*, so that they match the overallRainer Gerhards2008-03-0716-31/+43
| | | | scheme (like im* and om*)
* fixed potential infinite loop condition when module load failed on startupRainer Gerhards2008-03-076-14/+19
|
* extracted regexp functionality to its own dynamically loadable moduleRainer Gerhards2008-03-0713-51/+271
|
* some cleanupRainer Gerhards2008-03-073-16/+4
|
* applied patch from varmojfekoj fixing a deinit bugRainer Gerhards2008-03-071-1/+1
|
* - added RSYSLOGD_MODDIR environment variableRainer Gerhards2008-03-0720-97/+242
| | | | | - added -M rsyslogd option (allows to specify module directory location) - converted net.c into a loadable library plugin
* some minor things in regard to portabilityRainer Gerhards2008-03-063-11/+12
|
* bumped version numberRainer Gerhards2008-03-062-1/+3
|
* fixed some compiler warnings under FreeBSDRainer Gerhards2008-03-064-8/+8
|
* applied some bugfixes to new code supplied by varmojfekoj - thanks!v3-12-1Rainer Gerhards2008-03-062-4/+6
|
* preparing for 3.12.1 releaseRainer Gerhards2008-03-063-41/+42
|
* added capability to ignore client-provided timestamp on unix sockets andRainer Gerhards2008-03-0610-31/+108
| | | | | | | | | | | made this mode the default; this was needed, as some programs (e.g. sshd) log with inconsistent timezone information, what messes up the local logs (which by default don't even contain time zone information). This seems to be consistent with what sysklogd did for the past four years. Alternate behaviour may be desirable if gateway-like processes send messages via the local log slot - in this case, it can be enabled via the $InputUnixListenSocketIgnoreMsgTimestamp and $SystemLogSocketIgnoreMsgTimestamp config directives
* fixed typo (thanks to Michael Biebl)Rainer Gerhards2008-03-061-1/+1
|
* worked some more on HP UX - got it to compile and receive UDP messagesRainer Gerhards2008-03-063-4/+9
|
* portability: no longer using pthread mutex auto-init macros as they seem toRainer Gerhards2008-03-062-11/+20
| | | | be buggy on some platforms
* cleanup by Michael BieblRainer Gerhards2008-03-061-1/+1
|
* bugfix (yesterday's bug): abort during hup if library module was loadedRainer Gerhards2008-03-061-4/+9
|
* (tried to) fix logerror() call under BSD (but can not yet compile, so thisRainer Gerhards2008-03-064-4/+10
| | | | may be an error...)
* changed --enable-klogd to --enable-klog as suggested by Michael BieblRainer Gerhards2008-03-061-9/+9
|
* fixed a few remaining logerror() calls - thanks to Michael Biebl forRainer Gerhards2008-03-065-30/+28
| | | | pointing that out
* bugfix: gssutil was not linked against gss libsRainer Gerhards2008-03-061-1/+1
|
* applied patch from Michael Biebl to clean up build systemRainer Gerhards2008-03-0616-42/+39
|
* cleanupRainer Gerhards2008-03-061-2/+0
|
* Updated the Adiscon MIBs, they contain a few more definitions for variablesAndre Lorbach2008-03-053-9/+249
| | | | | and traps now. The default syslogmessage oid had to change again, as I had to reorganize the snmp variables.
* fixed bug in build processRainer Gerhards2008-03-051-4/+1
|
* fixed problem in autoconfRainer Gerhards2008-03-051-1/+4
|
* shuffled some more code from syslogd.c to the right placesRainer Gerhards2008-03-054-122/+111
|
* changed module loader to automatically add ".so" suffix if not specifiedRainer Gerhards2008-03-054-2/+26
| | | | (over time, this shall also ease portability of config files)
* moved date/time handling functions to their own object (2nd pass)Rainer Gerhards2008-03-055-9/+19
|
* moved date/time handling functions to their own objectRainer Gerhards2008-03-057-565/+707
|
* some more cleanupRainer Gerhards2008-03-051-4/+4
|
* cleanupRainer Gerhards2008-03-051-15/+0
|
* fixed sleep callRainer Gerhards2008-03-051-1/+1
|
* bugfix: actions were not correctly retried; caused message lossRainer Gerhards2008-03-052-1/+5
|
* some cleanupRainer Gerhards2008-03-051-26/+4
|
* - extracted logerror*() family of functions from syslogd, made them theirRainer Gerhards2008-03-0527-315/+627
| | | | | | own class and converted to new object calling conventions (interface-based) - converted gss-misc into a loadable library module
* bugfix: omfile used invalid obj-call (newly introduced bug)Rainer Gerhards2008-03-051-1/+1
|
* - changed modules.c calling conventions to be interface-basedRainer Gerhards2008-03-0525-273/+295
| | | | | | | | | | | - moved module loader from conf.c to module.c, where it belongs - made the necessary plumbing to auto-load library modules - upgraded debug system to include iRet in function exit message - changed module interface so that instances need only to be supported by output plugins (if we actually need them for input plugins, we can always add it again...) - milestone: first implementation of library modules (but do not get unloaded on exit/hup so far)
* updated omgssapi to use the current interface version definitionRainer Gerhards2008-03-051-1/+1
|
* did some portability changes to make rsyslog compile on HP UXRainer Gerhards2008-03-0520-58/+143
|
* Added custom mibs for the OMSNMP output module. These mibs are derived fromAndre Lorbach2008-03-044-28/+229
| | | | | | | | adiscon monitorware and will be used by default from now on. The mibs can be found in the mibs folder of the omsnmp directory. For more details please see the documentation. Also added a new configuration variable $actionsnmptrapoid which defines the trap-type or notification-type that is used.
* tweaked omsnmp doc a bitRainer Gerhards2008-03-042-25/+23
|
* Updated omsnmp documentationAndre Lorbach2008-03-041-3/+14
|