summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* adopted to changed librelp interfaceRainer Gerhards2008-03-311-2/+3
|
* added a --enable/disable-rsyslogd configure option so that source-basedRainer Gerhards2008-03-313-4/+63
| | | | | packaging systems can build plugins without the need to compile rsyslogd
* cleanupRainer Gerhards2008-03-311-2/+2
|
* worked a bit on atomic memory operations to support problem-free threadingRainer Gerhards2008-03-315-6/+29
| | | | (only at non-intrusive places)
* proposed new solution for version naming (to be discussed)Rainer Gerhards2008-03-311-30/+127
|
* fixed typo in directive name (ouch...)Rainer Gerhards2008-03-311-2/+2
|
* added initial support for atomic operationsRainer Gerhards2008-03-313-4/+41
|
* bugfix: tcp receiver could segfault due to uninitialized variableRainer Gerhards2008-03-312-2/+6
|
* - bugfix: accidently set debug option in 3.12.5 reset to production ThisRainer Gerhards2008-03-293-15/+18
| | | | | | | | option prevented dlclose() to be called. It had no real bad effects, as the modules were otherwise correctly deinitialized and dlopen() supports multiple opens of the same module without any memory footprint. - removed --enable-mudflap, added --enable-valgrind ./configure setting
* bumped version numberRainer Gerhards2008-03-282-1/+3
|
* preparing for 3.12.5 releasev3-12-5Rainer Gerhards2008-03-282-16/+23
|
* some cleanupRainer Gerhards2008-03-282-36/+2
|
* a bit less humor as tribute to the corporate world ;)Rainer Gerhards2008-03-281-10/+0
|
* - bugfix: regular expressions inside property replacer did not workRainer Gerhards2008-03-282-12/+13
| | | | properly
* bugfix: fixed small memory leak in template regular expressionsRainer Gerhards2008-03-283-33/+51
|
* fixed memory leakRainer Gerhards2008-03-281-1/+2
|
* prevented potential flood of error messages if regexp lib could not beRainer Gerhards2008-03-281-2/+6
| | | | loaded
* provided more generic URLRainer Gerhards2008-03-281-1/+1
|
* added build-in templatesRainer Gerhards2008-03-284-14/+35
|
* - added support for high-precision timestamps when receiving legacy syslogRainer Gerhards2008-03-288-17/+82
| | | | | | messages - added new $ActionForwardDefaultTemplate directive - added new $ActionGSSForwardDefaultTemplate directive
* cleanupRainer Gerhards2008-03-281-2/+1
|
* - changed default file output format to include high-precision timestampsRainer Gerhards2008-03-288-24/+68
| | | | | - added a buid-in template for previous syslogd file format - added new $ActionFileDefaultTemplate directive
* updating doc set for 3.12.5 releaseRainer Gerhards2008-03-283-268/+65
|
* updated v3 compatibility doc to cover new compatibility modeRainer Gerhards2008-03-274-73/+81
|
* - changed default for "last message repeated n times", which is now off byRainer Gerhards2008-03-271-42/+105
| | | | | | | | | | | default - implemented backward compatibility commandline option parsing - bugfix: -t and -g legacy options max number of sessions had a wrong and much too high value - automatically generated compatibility config lines are now also logged so that a user can diagnose problems with them - added compatibility mode for -a, -o and -p options - MILESTONE: compatibility mode processing finished
* finally removing NoHops - code was commented out all since v1.somewhat.Rainer Gerhards2008-03-271-62/+50
|
* bugfix: $ModDir did invalid bounds checking, potential overlow inRainer Gerhards2008-03-273-15/+31
| | | | dbgprintf() - thanks to varmojfekoj for the patch
* fixed memory leaks in stream class and imfileRainer Gerhards2008-03-272-9/+35
|
* required "syslog" relp command on client connectRainer Gerhards2008-03-271-1/+1
|
* changed the "syslog" relp command to be required for rsyslogdRainer Gerhards2008-03-271-1/+1
|
* made relp modules use new relpengine-provided feature selection functionsRainer Gerhards2008-03-272-1/+2
|
* used new librelp entry point to set "syslog" command as desired featureRainer Gerhards2008-03-271-0/+1
|
* bugfix: QHOUR and HHOUR properties were wrongly calculatedRainer Gerhards2008-03-262-3/+4
|
* linking to relp fixedRainer Gerhards2008-03-251-1/+1
|
* disabling librelp entry point check as I don't know how to do itRainer Gerhards2008-03-251-8/+11
| | | | correctly...
* bumping version numberRainer Gerhards2008-03-252-1/+3
|
* removing valgrind instrumentation for releasev3-12-4Rainer Gerhards2008-03-251-1/+1
|
* preparing for 3.12.4Rainer Gerhards2008-03-252-12/+25
|
* added $HHOUR and $QHOUR system properties - can be used for half- andRainer Gerhards2008-03-253-141/+293
| | | | quarter-hour logfile rotation
* fixed typo, euro pricingRainer Gerhards2008-03-251-4/+4
|
* small cleanupRainer Gerhards2008-03-251-1/+1
|
* bugfix: continue parsing if tag is oversize (discard oversize part) -Rainer Gerhards2008-03-251-0/+5
| | | | thanks to mclaughlin77@gmail.com for the patch
* handled case where relp server is not available on startupRainer Gerhards2008-03-231-2/+3
|
* enabled relp session recoveryRainer Gerhards2008-03-231-3/+13
|
* handled relp return statesRainer Gerhards2008-03-231-1/+4
|
* bugfix: internally generated messages had "FROMHOST" property not setRainer Gerhards2008-03-222-0/+15
|
* - Greatly enhanced rsyslogd's filw write performance by disabling fileRainer Gerhards2008-03-223-7/+29
| | | | | | | | | | | | | | | | syncing capability of output modules by default. This feature is usually not required, not useful and an extreme performance hit (both to rsyslogd as well as the system at large). Unfortunately, most users enable it by default, because it was most intuitive to enable it in plain old sysklogd syslog.conf format. There is now a new config setting which must be enabled in order to support syncing. By default it is off. So even if the old-format config lines request syncing, it is not done unless explicitely enabled. I am sure this is a very useful change and not a risk at all. I need to think if I undo it under compatibility mode, but currently this does not happen (I fear a lot of lazy users will run rsyslogd in compatibility mode, again bringing up this performance problem...). - added $ActionfileEnableSync config directive
* removed a now-longer needed callback from the output module interface.Rainer Gerhards2008-03-2217-132/+4
| | | | Results in reducing code complexity.
* changed queue's discard severities default value to 8 (do not discard) toRainer Gerhards2008-03-224-7/+11
| | | | prevent unintentional message loss
* some more cleanupRainer Gerhards2008-03-211-7/+1
|