summaryrefslogtreecommitdiffstats
path: root/Makefile.am
Commit message (Collapse)AuthorAgeFilesLines
* changed omgssapi and omfwd to utilize new object calling interface; made aRainer Gerhards2008-03-121-11/+22
| | | | | tcpclt class; (stage work, among others, for more intelligent recovery from TCP session recovery)
* renamed library module file names to lm*, so that they match the overallRainer Gerhards2008-03-071-15/+15
| | | | scheme (like im* and om*)
* fixed potential infinite loop condition when module load failed on startupRainer Gerhards2008-03-071-5/+5
|
* extracted regexp functionality to its own dynamically loadable moduleRainer Gerhards2008-03-071-0/+11
|
* - added RSYSLOGD_MODDIR environment variableRainer Gerhards2008-03-071-2/+11
| | | | | - added -M rsyslogd option (allows to specify module directory location) - converted net.c into a loadable library plugin
* 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-061-6/+6
|
* fixed bug in build processRainer Gerhards2008-03-051-4/+1
|
* fixed problem in autoconfRainer Gerhards2008-03-051-1/+4
|
* moved date/time handling functions to their own objectRainer Gerhards2008-03-051-0/+2
|
* - extracted logerror*() family of functions from syslogd, made them theirRainer Gerhards2008-03-051-7/+17
| | | | | | 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-basedRainer Gerhards2008-03-051-4/+12
| | | | | | | | | | | - 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)
* - added class tcpsRainer Gerhards2008-03-021-0/+4
| | | | | | - added class tcps_sess - changed imtcp to use new classes; seems to work; imgssapi currently broken
* split off imgssapi from imtcp, but still with a lot of dependencyRainer Gerhards2008-02-261-1/+1
|
* applied Michael Biebl's fix for building rsyslog core without gssapiRainer Gerhards2008-02-261-5/+9
| | | | support
* - added sysvar classRainer Gerhards2008-02-251-0/+2
| | | | - added PUSHSYSVAR operation to vm
* begun implementing rsyslog virtual machine (vm class)Rainer Gerhards2008-02-221-0/+2
|
* added empty vmstk classRainer Gerhards2008-02-211-0/+2
|
* created initial vmprg classRainer Gerhards2008-02-201-0/+2
|
* added vmop class (stage for expression execution)Rainer Gerhards2008-02-201-0/+2
|
* created var class out of property_tRainer Gerhards2008-02-201-0/+2
|
* created new class ctok_tokenRainer Gerhards2008-02-201-0/+2
|
* - added ctok class (the config tokenizer)Rainer Gerhards2008-02-191-0/+2
| | | | - done stage work to begin implement tokenizer
* - moved config file code to its own fileRainer Gerhards2008-02-191-0/+2
| | | | | | - finally made CONT_LINES in config the only standard support (the code contained code for other case, which were never executed by the preprocessor)
* - added doc on how expressions will workRainer Gerhards2008-02-191-0/+1
| | | | | | - cleaned up the stringbuf Construct interface - did some cleanup on stringbuf calls - we now have much better interfaces and macros
* created a bare template for omlibdbi (dbi output action)Rainer Gerhards2008-02-141-0/+4
|
* very quickly hacked a rought outline of the file monitor (without anyRainer Gerhards2008-02-011-0/+4
| | | | guarantees)
* added sample config file to distribution tarballRainer Gerhards2008-02-011-0/+1
|
* added input-plugin interface specification in form of a (copy) templateRainer Gerhards2008-02-011-0/+4
| | | | input module
* redesigned queue to utilize helper classes for threading support. This isRainer Gerhards2008-01-241-0/+6
| | | | | | finally in a running state for regular (non disk-assisted) queues, with a minor nit at shutdown. So I can finally commit the work again to CVS...
* Module OMSNMP intially added, not completed yet.Andre Lorbach2008-01-221-0/+4
|
* made queue file names better readableRainer Gerhards2008-01-101-0/+2
|
* created a generic stream class (for file access)Rainer Gerhards2008-01-091-0/+2
|
* added --enable-mudflap ./configure optionRainer Gerhards2008-01-081-2/+2
|
* - begun some work on Msg Object serializiationRainer Gerhards2008-01-041-0/+2
| | | | - created a kind of general base class
* removed reference to rklogd - thanks Michael Biebl for bringing this to myRainer Gerhards2008-01-031-1/+1
| | | | attention
* moved queue code to its own module (finally)Rainer Gerhards2008-01-031-0/+2
|
* created omtesting, a debug and development aid output module. This is stageRainer Gerhards2007-12-311-1/+1
| | | | | work for the new queueing engine - we need a way to delay rule execution and that's what the module currently does ;)
* omgssapi createdRainer Gerhards2007-12-281-0/+4
|
* prepared for imudpRainer Gerhards2007-12-211-1/+1
|
* begun work on imtcpRainer Gerhards2007-12-211-1/+1
|
* begun moving unix socket code to its own moduleRainer Gerhards2007-12-201-1/+1
|
* begun imklog, replacing klogd.c (finally we get rid of it...)Rainer Gerhards2007-12-171-12/+5
|
* moved core threading helpers out of syslogd.cRainer Gerhards2007-12-141-0/+2
|
* begin work on on immark, the first input module. In the long term this willRainer Gerhards2007-12-141-0/+2
| | | | lead to a complete rewrite of the input system
* fixed a potential race condition, see link for details:Rainer Gerhards2007-12-111-0/+2
| | | | http://rgerhards.blogspot.com/2007/12/rsyslog-race-condition.html
* added expr.c, which has some thoughts on expression implementationRainer Gerhards2007-12-111-0/+1
|
* applied patch from Michael Biebl for an even cleaner autotools config inRainer Gerhards2007-12-041-4/+1
| | | | regard to -ldl.
* added Bartosz Kuzma patches for better compatibility with NetBSD - manyRainer Gerhards2007-12-031-1/+4
| | | | thanks for them!
* library defintion was missing in build line - thx to Michael Biebl for fixRainer Gerhards2007-12-031-1/+1
|