summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* preparing for 1.17.6v1-17-6Rainer Gerhards2007-08-013-9/+14
|
* enhanced/renamed $include(config) directiveRainer Gerhards2007-08-011-11/+40
|
* - changed name of $Include to $IncludeConfig - sound better as it is moreRainer Gerhards2007-08-012-12/+2
| | | | explicit (we'll see where else we get includes for...)
* enhanced $Include to allow inclusion of a complete directoryRainer Gerhards2007-08-013-8/+100
|
* - applied a patch from mildew to prevent rsyslogd from freezing under heavyRainer Gerhards2007-08-013-2/+21
| | | | | load. This could happen when the queue was full. Now, we drop messages but rsyslogd remains active.
* added $include directiveRainer Gerhards2007-08-011-1/+24
|
* added $include config directiveRainer Gerhards2007-08-012-6/+39
|
* - some more code cleanupRainer Gerhards2007-08-015-55/+47
| | | | - enhanced cfsysline interface to disallow chaining of command handlers
* fixed typoRainer Gerhards2007-08-011-1/+1
|
* - loading default values as done yesterday *is* clean (I've just reviewedRainer Gerhards2007-08-017-48/+28
| | | | | | the code again) - moved omfile-specifc global variables (for cfsysline settings) from syslogd.c to omfile.c
* - loading default values as done yesterday *is* clean (I've just reviewedRainer Gerhards2007-08-011-21/+8
| | | | | | the code again) - moved omfile-specifc global variables (for cfsysline settings) from syslogd.c to omfile.c
* - $ResetConfigVariables now also works vir the table-driven sytem. However,Rainer Gerhards2007-07-313-23/+46
| | | | | I need to fix an issue with loading default settings when syslogd is started or HUPed
* - all cfsysline directives now use new table-driven cfsysline system exceptRainer Gerhards2007-07-314-52/+37
| | | | for $ResetConfigVariables
* omfile.c now uses the new table-driven cfsysline systemRainer Gerhards2007-07-315-15/+102
|
* - got the basic code in place to create an in-memory list of cfsyslineRainer Gerhards2007-07-318-41/+141
| | | | handlers (omfile.c used as testing case) -- not yet in active code
* - added interface to register a cfsysline command handler (basicRainer Gerhards2007-07-314-5/+54
| | | | functionality)
* - changed modInit() interface to contain pointer to host-function queryRainer Gerhards2007-07-3114-10/+66
| | | | method
* prepared cfsysline.c for integration into output modulesRainer Gerhards2007-07-316-27/+29
|
* - fixed a typo that caused the default template for MySQL to be wrong.Rainer Gerhards2007-07-311-1/+1
| | | | thanks to mildew for catching this.
* added some more functions to linkedList classRainer Gerhards2007-07-313-5/+84
|
* added a generic linked list object (files linkedlist.h/c)Rainer Gerhards2007-07-314-1/+178
|
* - added doCustomHdlr() to cfsysline.c - this completes implementingRainer Gerhards2007-07-313-9/+39
| | | | functions for canned handlers.
* moved debug printf code out of init() into its own functionRainer Gerhards2007-07-312-68/+79
|
* - fixed bug in objomsr.c that caused program to abort in debug mode with anRainer Gerhards2007-07-311-1/+1
| | | | invalid assertion (in some cases)
* moved code to open config file into separate function processConfFile()Rainer Gerhards2007-07-312-90/+113
|
* - added macro to abort a function and go to finalizerRainer Gerhards2007-07-314-35/+46
| | | | - added output of config file line number when a parsing error occured
* added macro to consistently define iRetRainer Gerhards2007-07-315-17/+17
|
* - added doGetInt() to cfsysline.c and adapted dynaFileChaceSize handler toRainer Gerhards2007-07-314-44/+70
| | | | use it
* - moved the SetCCEscapeCharacter config file directive to cfsysline.c andRainer Gerhards2007-07-313-49/+39
| | | | also generalized it for further use while doing so
* - moved umask & file/dir creation mode parsing to cfsysline.cRainer Gerhards2007-07-315-84/+119
| | | | - added macro for easy and consistent check of iRet return value
* moved doGetGID() to cfsysline.cRainer Gerhards2007-07-313-35/+49
|
* fixed insufficient memory allocation in addAction() and its helpers. TheRainer Gerhards2007-07-302-22/+47
| | | | | | initial fix and idea was developed by mildew, I fine-tuned it a bit. Thanks a lot for the fix, I'd probably had pulled out my hair to find the bug...
* moved doBinaryOption() and doGetGUID() to cfsysline.cRainer Gerhards2007-07-305-116/+152
|
* - fixed a memory leak in syslogd/init() that happend when the config fileRainer Gerhards2007-07-302-2/+4
| | | | could not be read - thanks to varmojfekoj for the patch
* fixed a mem leak in OMSRdestruct - freeing the object itself was forgottenRainer Gerhards2007-07-302-0/+3
| | | | - thanks to varmojfekoj for the patch
* fixed a bug that caused ommysql to always complain about missing templatesRainer Gerhards2007-07-302-0/+7
|
* - added cfsysline objects - initial set of functionsRainer Gerhards2007-07-305-4/+212
| | | | - fixed bug in OMSRcreate() - always returned SR_RET_OK
* bumping up version numberRainer Gerhards2007-07-301-2/+2
|
* preparing for 1.17.5v1-17-5Rainer Gerhards2007-07-304-6/+15
|
* fixed a problem with shutting down the worker thread and freeing theRainer Gerhards2007-07-292-5/+18
| | | | | selector_t list - this caused messages to be lost, because the message queue was not properly drained before the selectors got destroyed.
* added a bit more information about modulesRainer Gerhards2007-07-281-0/+43
|
* fixed a missing file bug - thanks to Andrea Montanari for reporting thisRainer Gerhards2007-07-282-1/+4
| | | | problem
* removed selector_t f references from output modulesRainer Gerhards2007-07-278-40/+37
|
* removed left-over debug printfRainer Gerhards2007-07-271-1/+0
|
* - added omsr object (objomsr.c, objomsr.h) - template request for outputRainer Gerhards2007-07-2714-225/+276
| | | | | | modules - changed doAction() interface - templates and output string generation for doActon() is now fully
* - added omsr object (objomsr.c, objomsr.h) - template request for outputRainer Gerhards2007-07-276-4/+190
| | | | modules
* prepared doc for 1.17.4v1-17-4Rainer Gerhards2007-07-273-4/+44
|
* preparing for 1.17.4 releaseRainer Gerhards2007-07-271-1/+1
|
* forgot to undo some changes - now doneRainer Gerhards2007-07-271-5/+0
|
* removed debug codeRainer Gerhards2007-07-271-2/+0
|