Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | fixed a bug that caused rsyslogd to segfault on exit (and probably also on | Rainer Gerhards | 2007-07-25 | 2 | -1/+13 | |
| | | | | | | | HUP), when there was an unsent message in a selector that required forwarding and the dns lookup failed for that selector (yes, it was pretty unlikely to happen;)) thanks to varmojfekoj <varmojfekoj@gmail.com> for the patch | |||||
* | hardned syslogd for a very unusual low memory condition | Rainer Gerhards | 2007-07-24 | 1 | -2/+7 | |
| | ||||||
* | removed previous emergency logging system on startup, because it is not | Rainer Gerhards | 2007-07-24 | 1 | -21/+1 | |
| | | | | | compatible with the new modules; need to re-implement the full functionality, currently stderr is used | |||||
* | applied patch from Michel Samia which solved problems when compiling | Rainer Gerhards | 2007-07-24 | 1 | -3/+7 | |
| | | | | without Internet support | |||||
* | TypeName is now pulled from the module itself | Rainer Gerhards | 2007-07-24 | 3 | -11/+16 | |
| | ||||||
* | removed no-longer-used TESTING conditional compilation | Rainer Gerhards | 2007-07-24 | 1 | -51/+3 | |
| | ||||||
* | added freeInstance() call to output module interface; re-structured | Rainer Gerhards | 2007-07-24 | 8 | -129/+146 | |
| | | | | ressource release code in syslogd.c | |||||
* | removed F_UNUSED and cleaned up action-disabling handling | Rainer Gerhards | 2007-07-24 | 9 | -86/+89 | |
| | ||||||
* | major task: made sure no selector_t is created for selector lines that can | Rainer Gerhards | 2007-07-24 | 8 | -99/+125 | |
| | | | | | not be successfully loaded. That forced me to change a lot of code, with potential for trouble. | |||||
* | applied patch from varmojfekoj to solve small mem leak | Rainer Gerhards | 2007-07-24 | 2 | -1/+21 | |
| | ||||||
* | moved discard functionality to an output module | Rainer Gerhards | 2007-07-24 | 17 | -76/+298 | |
| | ||||||
* | changed action calling sequence to module interface/structure | Rainer Gerhards | 2007-07-24 | 7 | -10/+10 | |
| | ||||||
* | changed select action config reader to use module interface | Rainer Gerhards | 2007-07-24 | 6 | -34/+50 | |
| | ||||||
* | fixed wrong credits - last patch was by mildew -- sorry for that ;) | Rainer Gerhards | 2007-07-24 | 11 | -135/+146 | |
| | ||||||
* | moved selector action config parsing for shell action to omshell | Rainer Gerhards | 2007-07-24 | 3 | -13/+37 | |
| | ||||||
* | moved selector action parsing for MySQL to ommysql | Rainer Gerhards | 2007-07-24 | 4 | -87/+119 | |
| | ||||||
* | moved selector action parsing for F_FORW to omfwd | Rainer Gerhards | 2007-07-24 | 3 | -170/+200 | |
| | ||||||
* | fixed a small memory leak when HUPing syslogd. The allowed sender list now | Rainer Gerhards | 2007-07-24 | 2 | -0/+35 | |
| | | | | gets freed. thanks varmojfekoj to for the patch. | |||||
* | continued working on modularization; begun to create interface for | Rainer Gerhards | 2007-07-23 | 17 | -277/+690 | |
| | | | | | configuring actions selector lines; begun basic functionality for module initialization and loading built-in modules. | |||||
* | fixed a memory leak in config file parsing thanks to varmojfekoj for the | Rainer Gerhards | 2007-07-23 | 4 | -14/+22 | |
| | | | | patch | |||||
* | added warning for other coders | Rainer Gerhards | 2007-07-23 | 1 | -1/+4 | |
| | ||||||
* | rsyslogd now checks on startup if it is capable to performa any work at | Rainer Gerhards | 2007-07-23 | 2 | -1/+33 | |
| | | | | | all. If it cant, it complains and terminates thanks to Michel Samia for providing the patch! | |||||
* | bumped version number | Rainer Gerhards | 2007-07-23 | 2 | -2/+4 | |
| | ||||||
* | fixed small but important typov1-17-2 | Rainer Gerhards | 2007-07-23 | 1 | -1/+2 | |
| | ||||||
* | made syntax of -r chrystal-clear in doc (at least I hope so...) | Rainer Gerhards | 2007-07-23 | 2 | -8/+10 | |
| | ||||||
* | added new modules file set | Rainer Gerhards | 2007-07-23 | 2 | -0/+185 | |
| | ||||||
* | preparing for 1.17.2 release | Rainer Gerhards | 2007-07-23 | 2 | -4/+4 | |
| | ||||||
* | added $DropTrailingLFOnReception config directive | Rainer Gerhards | 2007-07-23 | 1 | -0/+8 | |
| | ||||||
* | added DropTrailingLFOnReception config directive | Rainer Gerhards | 2007-07-23 | 2 | -0/+14 | |
| | ||||||
* | fixed a very nasty bug in structure creation of struct filed (caused | Rainer Gerhards | 2007-07-23 | 6 | -86/+25 | |
| | | | | | omusrmsg to be defunct) - many thanks to maharaja for providing the right idea at the right time ;) | |||||
* | simplified action calling using new interface Warning: this version has a | Rainer Gerhards | 2007-07-23 | 8 | -53/+41 | |
| | | | | | structure alignment issue in omusrmsg.c, I currently do not know why. I check in so that others can look at it. | |||||
* | moved file write output module to own set of code files | Rainer Gerhards | 2007-07-22 | 12 | -1093/+1219 | |
| | ||||||
* | added $ModLoad MySQL config directive | Rainer Gerhards | 2007-07-22 | 1 | -18/+28 | |
| | ||||||
* | added $ModLoad MySQL (dummy) config directive | Rainer Gerhards | 2007-07-22 | 2 | -0/+37 | |
| | ||||||
* | changed calling interface for doAction() as a reminder for the other | Rainer Gerhards | 2007-07-22 | 3 | -3/+3 | |
| | | | | modules | |||||
* | changed interface, now is updated by rule engine | Rainer Gerhards | 2007-07-22 | 4 | -4/+4 | |
| | ||||||
* | moved some more modules to their own file sets | Rainer Gerhards | 2007-07-22 | 10 | -1464/+1770 | |
| | ||||||
* | moved mysql action to its own code files | Rainer Gerhards | 2007-07-20 | 6 | -236/+338 | |
| | ||||||
* | moved code for user and wall message action into its own files | Rainer Gerhards | 2007-07-20 | 5 | -173/+256 | |
| | ||||||
* | moved part of the shell action to its own module | Rainer Gerhards | 2007-07-20 | 9 | -4/+118 | |
| | ||||||
* | bumped version number | Rainer Gerhards | 2007-07-20 | 1 | -2/+2 | |
| | ||||||
* | - removed a memory leak that could occur if timegenerated was used in RFC | Rainer Gerhards | 2007-07-20 | 2 | -21/+115 | |
| | | | | | | 3164 format in templates - did some preparation in msg.c for advanced multithreading - placed the hooks, but not yet any active code | |||||
* | cleanup | Rainer Gerhards | 2007-07-20 | 1 | -5/+3 | |
| | ||||||
* | removed incorrect note on -m parameter | Rainer Gerhards | 2007-07-20 | 1 | -3/+0 | |
| | ||||||
* | replaced system() calls with something more reasonable. Please note that | Rainer Gerhards | 2007-07-20 | 4 | -55/+100 | |
| | | | | | this might break compatibility with some existing configuration files. We accept this in favour of the gained security. | |||||
* | defined some macros for further use with advanced multithreading | Rainer Gerhards | 2007-07-20 | 1 | -6/+12 | |
| | ||||||
* | reflect new -r option behaviour | Rainer Gerhards | 2007-07-20 | 1 | -3/+3 | |
| | ||||||
* | updated usage() - forgotten when changed -r option | Rainer Gerhards | 2007-07-20 | 1 | -1/+1 | |
| | ||||||
* | removed incompatibility to sysklogd in syslogd -r option parsing | Rainer Gerhards | 2007-07-20 | 1 | -2/+5 | |
| | ||||||
* | prepared doc set for 1.17.1 releasev1-17-1 | Rainer Gerhards | 2007-07-20 | 3 | -7/+14 | |
| |