summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | modload info added (v3)Michael Meckelein2008-01-081-1/+12
| |
* | implemented queue disk reader to switch to multiple filesRainer Gerhards2008-01-084-31/+33
| |
* | fixed some memory leaks in new code -- thanks to varmojfekoj for the patchRainer Gerhards2008-01-082-4/+7
| |
* | fixed doc bugRainer Gerhards2008-01-081-11/+11
| |
* | fixed doc bug -- thanks to varmojfekoj for pointing it outRainer Gerhards2008-01-081-5/+5
| |
* | worked a bit more on the queue, disk dequeing part (not complete yet)Rainer Gerhards2008-01-072-3/+15
| |
* | - MsgSetProperty() implementedRainer Gerhards2008-01-0710-75/+435
| | | | | | | | | | - defined a property class - implemented deserializer (needs some more work)
* | implemented class type registryRainer Gerhards2008-01-076-3/+40
| |
* | implemented buffered read calls for the queue fileRainer Gerhards2008-01-073-20/+110
| |
* | implemented disk queue as far as I could without an object de-serializerRainer Gerhards2008-01-074-25/+129
| |
* | performance-tuned stringbuf classRainer Gerhards2008-01-076-39/+78
| |
* | bumped version numberRainer Gerhards2008-01-072-1/+3
| |
* | fixed invalid linkRainer Gerhards2008-01-071-1/+1
| |
* | preparing for 3.10.0v3-10-0Rainer Gerhards2008-01-071-1/+2
| |
* | preparing for 3.10.0 releaseRainer Gerhards2008-01-073-10/+13
| |
* | preparing for initial 3.10.0 releaseRainer Gerhards2008-01-072-7/+21
| |
* | added some more informationRainer Gerhards2008-01-071-0/+19
| |
* | worked on object header (now also contains the size)Rainer Gerhards2008-01-064-44/+66
| |
* | completed serializer for msg (but needs review)Rainer Gerhards2008-01-064-42/+63
| |
* | adjusted to recent IETF developmentsRainer Gerhards2008-01-061-1/+1
| |
* | worked a bit on object serializationRainer Gerhards2008-01-066-22/+170
| |
* | - fixed a bug with integer conversion in srUtils.cRainer Gerhards2008-01-062-4/+5
| | | | | | | | | | - changed some lib functions to work on long instead of int to care for 64 bit platforms (just to be on the save side)
* | removed some no-longer-needed code (thanks Michael Biebl for the help)Rainer Gerhards2008-01-054-19/+0
| |
* | added newst config directive changesRainer Gerhards2008-01-051-2/+4
| |
* | - added multiple worker thread capability to queue classRainer Gerhards2008-01-053-17/+46
| | | | | | | | - implemented $MainMsgQueueWorkerThreads config directive
* | added the "direct" queueing mode to queue class (no queing at all)Rainer Gerhards2008-01-054-22/+89
| |
* | added capability for concurrent access to the msg class. Can be dynamicallyRainer Gerhards2008-01-054-106/+280
| | | | | | | | activated. If active, locking is employed.
* | changed queue object Construction/Startup interfaceRainer Gerhards2008-01-045-13/+29
| |
* | moved message destruction back to consumer - the consume should decide whatRainer Gerhards2008-01-043-13/+1
| | | | | | | | | | to do with the object. It may pass it on to someone else. So this would have creatd some headache in the future (maybe...).
* | utilized the new auto-destruction capability so that the queue can nowRainer Gerhards2008-01-046-11/+26
| | | | | | | | destruct user objects if needed
* | removed serialization pointer from queue; used new base class insteadRainer Gerhards2008-01-045-21/+13
| |
* | - begun some work on Msg Object serializiationRainer Gerhards2008-01-049-5/+295
| | | | | | | | - created a kind of general base class
* | begun working on disk queueing (not completed, do not use this mode!)Rainer Gerhards2008-01-035-10/+170
| |
* | added $MainMsgQueueFilePrefix config parameterRainer Gerhards2008-01-031-2/+8
| |
* | added $SpoolDirectory config parameterRainer Gerhards2008-01-032-20/+28
| |
* | added new config directivesRainer Gerhards2008-01-031-0/+2
| |
* | fixed old references to rklogd - thanks to Michael Biebl for spotting them.Rainer Gerhards2008-01-031-2/+2
| |
* | made doc somewhat more conformant to current development stateRainer Gerhards2008-01-033-4/+5
| |
* | brought up-to-dateRainer Gerhards2008-01-031-1/+34
| |
* | changed version number to one in the testing version number rangeRainer Gerhards2008-01-031-1/+1
| |
* | added $MainMsgQueueType config parameterRainer Gerhards2008-01-033-7/+34
| |
* | cleanupRainer Gerhards2008-01-031-5/+5
| |
* | removed reference to rklogd - thanks Michael Biebl for bringing this to myRainer Gerhards2008-01-031-1/+1
| | | | | | | | attention
* | simplified code and got rid of empty/full state variablesRainer Gerhards2008-01-032-22/+5
| |
* | added capability to use a linked list for queuing to the queue classRainer Gerhards2008-01-033-5/+148
| |
* | applied Michael Biebl's patch to clean up the makefilesRainer Gerhards2008-01-039-29/+19
| |
* | some cleanup, running in non-multithreaded mode no langer can happenRainer Gerhards2008-01-031-101/+76
| | | | | | | | (rsyslogd error terminates if it can't start the queue and its thread)
* | queue is now a full object and handles threading by itselfRainer Gerhards2008-01-034-218/+146
| |
* | implemented queue type "drivers"Rainer Gerhards2008-01-032-30/+99
| |
* | restructured queue interface to use rsRetVal and instances, removedRainer Gerhards2008-01-033-81/+97
| | | | | | | | dependency on globals - now more like a real class