Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | some cleanup | Rainer Gerhards | 2008-03-28 | 1 | -36/+1 |
| | |||||
* | provided more generic URL | Rainer Gerhards | 2008-03-28 | 1 | -1/+1 |
| | |||||
* | added build-in templates | Rainer Gerhards | 2008-03-28 | 1 | -4/+4 |
| | |||||
* | - added support for high-precision timestamps when receiving legacy syslog | Rainer Gerhards | 2008-03-28 | 1 | -5/+11 |
| | | | | | | messages - added new $ActionForwardDefaultTemplate directive - added new $ActionGSSForwardDefaultTemplate directive | ||||
* | - changed default file output format to include high-precision timestamps | Rainer Gerhards | 2008-03-28 | 1 | -3/+6 |
| | | | | | - added a buid-in template for previous syslogd file format - added new $ActionFileDefaultTemplate directive | ||||
* | - changed default for "last message repeated n times", which is now off by | Rainer Gerhards | 2008-03-27 | 1 | -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 | ||||
* | small cleanup | Rainer Gerhards | 2008-03-25 | 1 | -1/+1 |
| | |||||
* | bugfix: continue parsing if tag is oversize (discard oversize part) - | Rainer Gerhards | 2008-03-25 | 1 | -0/+5 |
| | | | | thanks to mclaughlin77@gmail.com for the patch | ||||
* | bugfix: internally generated messages had "FROMHOST" property not set | Rainer Gerhards | 2008-03-22 | 1 | -0/+1 |
| | |||||
* | removed a now-longer needed callback from the output module interface. | Rainer Gerhards | 2008-03-22 | 1 | -43/+0 |
| | | | | Results in reducing code complexity. | ||||
* | changed queue's discard severities default value to 8 (do not discard) to | Rainer Gerhards | 2008-03-22 | 1 | -1/+1 |
| | | | | prevent unintentional message loss | ||||
* | bugfix: fixed some minor memory leaks | Rainer Gerhards | 2008-03-20 | 1 | -3/+23 |
| | |||||
* | added flow control options to other input sources | Rainer Gerhards | 2008-03-19 | 1 | -4/+13 |
| | |||||
* | added advanced flow control for congestion cases (mode depending on message | Rainer Gerhards | 2008-03-14 | 1 | -2/+2 |
| | | | | source and its capablity to be delayed without bad side effects) | ||||
* | bugfix: $ModDir should not be reset on $ResetConfig - this can cause a lot | Rainer Gerhards | 2008-03-14 | 1 | -4/+0 |
| | | | | | of confusion and there is no real good reason to do so. Also conflicts with the new -M option and environment setting. | ||||
* | changed omgssapi and omfwd to utilize new object calling interface; made a | Rainer Gerhards | 2008-03-12 | 1 | -2/+0 |
| | | | | | tcpclt class; (stage work, among others, for more intelligent recovery from TCP session recovery) | ||||
* | implemented module unload handling (required a number of interface changes) | Rainer Gerhards | 2008-03-11 | 1 | -33/+100 |
| | |||||
* | some cleanup | Rainer Gerhards | 2008-03-07 | 1 | -1/+0 |
| | |||||
* | renamed library module file names to lm*, so that they match the overall | Rainer Gerhards | 2008-03-07 | 1 | -1/+1 |
| | | | | scheme (like im* and om*) | ||||
* | extracted regexp functionality to its own dynamically loadable module | Rainer Gerhards | 2008-03-07 | 1 | -0/+1 |
| | |||||
* | - added RSYSLOGD_MODDIR environment variable | Rainer Gerhards | 2008-03-07 | 1 | -13/+27 |
| | | | | | - added -M rsyslogd option (allows to specify module directory location) - converted net.c into a loadable library plugin | ||||
* | added capability to ignore client-provided timestamp on unix sockets and | Rainer Gerhards | 2008-03-06 | 1 | -5/+7 |
| | | | | | | | | | | | 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 | ||||
* | cleanup | Rainer Gerhards | 2008-03-06 | 1 | -2/+0 |
| | |||||
* | shuffled some more code from syslogd.c to the right places | Rainer Gerhards | 2008-03-05 | 1 | -121/+9 |
| | |||||
* | moved date/time handling functions to their own object (2nd pass) | Rainer Gerhards | 2008-03-05 | 1 | -3/+3 |
| | |||||
* | moved date/time handling functions to their own object | Rainer Gerhards | 2008-03-05 | 1 | -547/+11 |
| | |||||
* | some cleanup | Rainer Gerhards | 2008-03-05 | 1 | -26/+4 |
| | |||||
* | - extracted logerror*() family of functions from syslogd, made them their | Rainer Gerhards | 2008-03-05 | 1 | -99/+39 |
| | | | | | | own class and converted to new object calling conventions (interface-based) - converted gss-misc into a loadable library module | ||||
* | - changed modules.c calling conventions to be interface-based | Rainer Gerhards | 2008-03-05 | 1 | -17/+19 |
| | | | | | | | | | | | - 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 UX | Rainer Gerhards | 2008-03-05 | 1 | -26/+46 |
| | |||||
* | - added class tcps | Rainer Gerhards | 2008-03-02 | 1 | -0/+4 |
| | | | | | | - added class tcps_sess - changed imtcp to use new classes; seems to work; imgssapi currently broken | ||||
* | converted conf.c to an abstract class | Rainer Gerhards | 2008-02-29 | 1 | -15/+16 |
| | |||||
* | - added "debug" command to debug environment settings | Rainer Gerhards | 2008-02-29 | 1 | -7/+8 |
| | | | | | | | | | - changed the object/interface system to use a new way of calling, giving up the numerical object ID. This was necessary as we needed more extensibility for third-party modules (which don't play at all with the previous fixed object ID). This is stage work for the object loader. Please note that I needed to change the object (de)serializer, I can't outrule that I have introduced bugs there. | ||||
* | changed obj base object's calling interface to use the new obj_if_t | Rainer Gerhards | 2008-02-29 | 1 | -1/+4 |
| | | | | interface structure | ||||
* | worked on queue stability | Rainer Gerhards | 2008-02-26 | 1 | -1/+2 |
| | |||||
* | bugfix: rsyslogd segfaulted on second SIGHUP tracker: | Rainer Gerhards | 2008-02-26 | 1 | -1/+1 |
| | | | | http://bugzilla.adiscon.com/show_bug.cgi?id=38 | ||||
* | applied patch from varmojfekoj to fix an issue with compatibility mode and | Rainer Gerhards | 2008-02-26 | 1 | -2/+2 |
| | | | | default module directories (many thanks!) | ||||
* | - added sysvar class | Rainer Gerhards | 2008-02-25 | 1 | -0/+2 |
| | | | | - added PUSHSYSVAR operation to vm | ||||
* | - added PUSHMSGVAR operation | Rainer Gerhards | 2008-02-25 | 1 | -16/+39 |
| | | | | - included expression support in filter module (and it works ;)) | ||||
* | - added some temporary testing aids to conf.c, so that we can debug | Rainer Gerhards | 2008-02-25 | 1 | -0/+4 |
| | | | | | | expression support as it is implemented - fixed a couple of bugs in expression system - added more operations to virtual machine - now works well with constants | ||||
* | removed no longer needed code | Rainer Gerhards | 2008-02-22 | 1 | -8/+0 |
| | |||||
* | applied patch by varmojfekoj to allow gssapi functionality to be build as a | Rainer Gerhards | 2008-02-22 | 1 | -8/+153 |
| | | | | | | separate plugin (so that gssapi and plain tcp functionality can be individually distributed). Also inclulded some other enhancements, most importantly initial compatibility mode system | ||||
* | first steps in implementing object interfaces (stage work for later dynamic | Rainer Gerhards | 2008-02-21 | 1 | -1/+12 |
| | | | | class loading) | ||||
* | changed rsCStrObj name to cstr_t, which is more inline with the rest of | Rainer Gerhards | 2008-02-21 | 1 | -1/+1 |
| | | | | rsyslog (now) and also much easier to type | ||||
* | created initial vmprg class | Rainer Gerhards | 2008-02-20 | 1 | -0/+2 |
| | |||||
* | added vmop class (stage for expression execution) | Rainer Gerhards | 2008-02-20 | 1 | -0/+2 |
| | |||||
* | $MainMessageQueueDiscardSeverity can now also handle textual severities | Rainer Gerhards | 2008-02-20 | 1 | -1/+1 |
| | | | | (previously only integers) | ||||
* | changed rsCStrDestruct() to use the new interface conventions | Rainer Gerhards | 2008-02-20 | 1 | -8/+6 |
| | |||||
* | created var class out of property_t | Rainer Gerhards | 2008-02-20 | 1 | -0/+1 |
| | |||||
* | created new class ctok_token | Rainer Gerhards | 2008-02-20 | 1 | -0/+1 |
| |