summaryrefslogtreecommitdiffstats
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
* bugfix: some slightly invalid memory accessesRainer Gerhards2008-03-201-0/+1
|
* bugfix: fixed some minor memory leaksRainer Gerhards2008-03-201-0/+1
|
* bugfix: potential segfault on module unload. Thanks to varmojfekoj for theRainer Gerhards2008-03-191-0/+2
| | | | patch
* bugfix: imklog leaked several hundered KB on each HUP. Thanks toRainer Gerhards2008-03-191-0/+2
| | | | varmojfekoj for the patch
* added flow control options to other input sourcesRainer Gerhards2008-03-191-0/+2
|
* bumping version numberRainer Gerhards2008-03-181-0/+2
|
* preparing for 3.12.3v3-12-3Rainer Gerhards2008-03-181-1/+5
|
* bugfix: rsyslogd aborted on sigup - thanks to varmojfekoj for the patchRainer Gerhards2008-03-171-1/+2
|
* bugfix: duplicate public symbol in omfwd and omgssapi could lead toRainer Gerhards2008-03-141-0/+2
| | | | segfault. thanks to varmojfekoj for the patch.
* bugfix: TCP (and GSSAPI) octet-counted frame did not work correctly in allRainer Gerhards2008-03-141-0/+6
| | | | | situations. If the header was split across two packet reads, it was invalidly processed, causing loss or modification of messages.
* added advanced flow control for congestion cases (mode depending on messageRainer Gerhards2008-03-141-0/+2
| | | | source and its capablity to be delayed without bad side effects)
* cleanupRainer Gerhards2008-03-141-0/+3
|
* cleaned up new relp code files to make them suitable for implementationRainer Gerhards2008-03-131-0/+1
|
* added initial set of RELP support (i/omrelp) - not working yet, just stageRainer Gerhards2008-03-131-0/+2
| | | | work
* preparing 3.12.2Rainer Gerhards2008-03-131-1/+1
|
* bugfix: imgssapi segfaulted under some conditions; this fix is actually notRainer Gerhards2008-03-131-0/+4
| | | | | | just a fix but a change in the object model. Thanks to varmojfekoj for providing the bug report, an initial fix and lots of good discussion that lead to where we finally ended up.
* improved session recovery when outbound tcp connection breaks, reducesRainer Gerhards2008-03-121-0/+3
| | | | | probability of message loss at the price of a highly unlikely potential (single) message duplication
* bugfix: rsyslogd segfaulted when imfile read an empty line - thanks toRainer Gerhards2008-03-121-0/+6
| | | | Johnny Tan for an excellent bug report
* bugfix: debug.c now survives module unloads in all cases tracker:Rainer Gerhards2008-03-101-0/+2
| | | | http://bugzilla.adiscon.com/show_bug.cgi?id=2
* - added RSYSLOGD_MODDIR environment variableRainer Gerhards2008-03-071-0/+3
| | | | | - added -M rsyslogd option (allows to specify module directory location) - converted net.c into a loadable library plugin
* bumped version numberRainer Gerhards2008-03-061-0/+2
|
* preparing for 3.12.1 releaseRainer Gerhards2008-03-061-0/+3
|
* added capability to ignore client-provided timestamp on unix sockets andRainer Gerhards2008-03-061-0/+9
| | | | | | | | | | | 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
* portability: no longer using pthread mutex auto-init macros as they seem toRainer Gerhards2008-03-061-3/+3
| | | | be buggy on some platforms
* changed module loader to automatically add ".so" suffix if not specifiedRainer Gerhards2008-03-051-0/+3
| | | | (over time, this shall also ease portability of config files)
* bugfix: actions were not correctly retried; caused message lossRainer Gerhards2008-03-051-0/+1
|
* - changed modules.c calling conventions to be interface-basedRainer Gerhards2008-03-051-2/+4
| | | | | | | | | | | - 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)
* did some portability changes to make rsyslog compile on HP UXRainer Gerhards2008-03-051-2/+1
|
* tweaked omsnmp doc a bitRainer Gerhards2008-03-041-1/+2
|
* converted conf.c to an abstract classRainer Gerhards2008-02-291-0/+1
|
* some stage work on rsyslog loaderRainer Gerhards2008-02-291-0/+1
|
* added "help" command to runtime debug flagsRainer Gerhards2008-02-281-0/+2
|
* bugfix: removed debugging code that I forgot to remove before releasingRainer Gerhards2008-02-281-0/+4
| | | | 3.12.0 (does not cause harm and happened only during startup)
* preparing for 3.12.0Rainer Gerhards2008-02-281-0/+2
|
* bumped version number (again... let's see if we finally get to 3.12.0 ;))Rainer Gerhards2008-02-271-0/+2
|
* prepared for 3.11.6v3-11-6Rainer Gerhards2008-02-271-2/+2
|
* - bugfix: queue aborted when it was shut down, DA-enabled, DA mode was justRainer Gerhards2008-02-271-0/+5
| | | | | | | | | initiated but not fully initialized (a race condition) - bugfix: queue properties sizeOnDisk, bytesRead were persisted to disk with wrong data type (long instead of int64) - could cause problems on 32 bit machines - fixed a problem introduced today, on-disk queue size was now wrongly calculated (but not in any released version)
* bugfix: object property deserializer did not handle negative numbersRainer Gerhards2008-02-271-0/+1
|
* bugfix: during queue shutdown, an assert invalidly triggered when theRainer Gerhards2008-02-271-0/+5
| | | | | | primary queue's DA worker was terminated while the DA queue's regular worker was still executing. This could result in a segfault during shutdown. tracker: http://bugzilla.adiscon.com/show_bug.cgi?id=41
* bugfix: queue disk file were not properly persisted when immediately afterRainer Gerhards2008-02-271-0/+10
| | | | | | | | | closing an output file rsyslog was stopped or huped (the new output file open must NOT have happend at that point) - this lead to a sparse and invalid queue file which could cause several problems to the engine (unpredictable results). This situation should have happened only in very rare cases. tracker: http://bugzilla.adiscon.com/show_bug.cgi?id=40
* bugfix: queue cancel cleanup handler could be called with invalid pointerRainer Gerhards2008-02-271-0/+3
| | | | if dequeue failed
* bugfix: rsyslogd segfaulted on second SIGHUP tracker:Rainer Gerhards2008-02-261-0/+2
| | | | http://bugzilla.adiscon.com/show_bug.cgi?id=38
* split off imgssapi from imtcp, but still with a lot of dependencyRainer Gerhards2008-02-261-1/+4
|
* applied patch from varmojfekoj to fix an issue with compatibility mode andRainer Gerhards2008-02-261-0/+9
| | | | default module directories (many thanks!)
* applied Michael Biebl's fix for building rsyslog core without gssapiRainer Gerhards2008-02-261-0/+2
| | | | support
* bumped version numberRainer Gerhards2008-02-251-1/+3
|
* preparing for 3.11.5v3-11-5Rainer Gerhards2008-02-251-1/+1
|
* added some doc for imgssapi and imtcp input modulesRainer Gerhards2008-02-221-3/+4
|
* updated compatibility notes docRainer Gerhards2008-02-221-2/+2
|
* applied patch by varmojfekoj to allow gssapi functionality to be build as aRainer Gerhards2008-02-221-0/+6
| | | | | | separate plugin (so that gssapi and plain tcp functionality can be individually distributed). Also inclulded some other enhancements, most importantly initial compatibility mode system