summaryrefslogtreecommitdiffstats
path: root/Makefile.am
Commit message (Collapse)AuthorAgeFilesLines
...
* moved action object out of syslogd.c to its own fileset (action.c/h)Rainer Gerhards2007-08-061-1/+1
|
* - I found out that we finally have problems with the (somewhat recursive)Rainer Gerhards2007-08-031-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | call to logerror() that many of the modules do. I have not tried it, but I think things will become wild when we compile without pthread support. Threading prevents full recursion, so we have not seen any bad effects so far. However, the problems that I experienced in ommysl (that caused me to re-structure startWorker()) are actually rooted in this issue. I first thought to fix it via a module interace, but I now came to the conclusion that it is not more effort and much cleaner to do an internal error buffering class. This is implemented in errbuf.c/h. - I just noticed that this is not actually an error buf, but the core of an input module for all internal messages. As such, I implement it now as iminternal.c/h. Of course, there is no input module interface yet designed, but that doesn't matter. Worst-case, I need to re-write the im, best case I can use the im (at least partly) to define the interface. - added a few functions to the linkedlist class - error messages during startup are now buffered - so we do no longer need to think about how emergency logging might work. Actually, these are logged to whatever is instatiated in the log file. This enhances the chance that we will be able to drop the error message somewhere it is seen.
* added a generic linked list object (files linkedlist.h/c)Rainer Gerhards2007-07-311-1/+1
|
* - added cfsysline objects - initial set of functionsRainer Gerhards2007-07-301-1/+1
| | | | - fixed bug in OMSRcreate() - always returned SR_RET_OK
* fixed a missing file bug - thanks to Andrea Montanari for reporting thisRainer Gerhards2007-07-281-1/+1
| | | | problem
* - added omsr object (objomsr.c, objomsr.h) - template request for outputRainer Gerhards2007-07-271-1/+1
| | | | modules
* changed output modules to use a template-based code generation system forRainer Gerhards2007-07-251-1/+1
| | | | standard entry points (implemented via preprocessor)
* moved discard functionality to an output moduleRainer Gerhards2007-07-241-1/+1
|
* fixed a very nasty bug in structure creation of struct filed (causedRainer Gerhards2007-07-231-1/+1
| | | | | omusrmsg to be defunct) - many thanks to maharaja for providing the right idea at the right time ;)
* moved file write output module to own set of code filesRainer Gerhards2007-07-221-1/+1
|
* moved some more modules to their own file setsRainer Gerhards2007-07-221-1/+1
|
* moved mysql action to its own code filesRainer Gerhards2007-07-201-1/+1
|
* moved code for user and wall message action into its own filesRainer Gerhards2007-07-201-1/+1
|
* moved part of the shell action to its own moduleRainer Gerhards2007-07-201-1/+1
|
* moved message object into its own set of filesRainer Gerhards2007-07-191-1/+1
|
* fixed a bug which caused install to install program under wrong nameRainer Gerhards2007-07-181-5/+5
|
* applied patch by redhat, Peter VrabecRainer Gerhards2007-07-161-1/+1
|
* added patch by mildew@gmail.com to support IPv6 in $AllowedSenderRainer Gerhards2007-07-161-1/+1
|
* added contributor page to doc setRainer Gerhards2007-07-161-1/+1
|
* added missing filesRainer Gerhards2007-07-131-4/+4
|
* made "make dist" workRainer Gerhards2007-07-131-0/+1
|
* added man filesRainer Gerhards2007-07-131-0/+2
|
* - removed some now-unused fields from struct filedRainer Gerhards2007-07-131-1/+1
| | | | | - move file size limit fields in struct field to the "right spot" (the file writing part of the union - f_un.f_file)
* removed SYSV preprocessor macro; replaced with autotools equivalentRainer Gerhards2007-07-111-1/+1
|
* upgrading to autotools build system - thank Peter Vrabec for patches andRainer Gerhards2007-07-101-0/+11
the idea