Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | implemented module unload handling (required a number of interface changes) | Rainer Gerhards | 2008-03-11 | 1 | -2/+6 |
| | |||||
* | - added RSYSLOGD_MODDIR environment variable | Rainer Gerhards | 2008-03-07 | 1 | -1/+1 |
| | | | | | - added -M rsyslogd option (allows to specify module directory location) - converted net.c into a loadable library plugin | ||||
* | corrected invalid function definition | Rainer Gerhards | 2008-02-29 | 1 | -1/+1 |
| | |||||
* | - added "debug" command to debug environment settings | Rainer Gerhards | 2008-02-29 | 1 | -6/+6 |
| | | | | | | | | | - changed the object/interface system to use a new way of calling, giving up the numerical object ID. This was necessary as we needed more extensibility for third-party modules (which don't play at all with the previous fixed object ID). This is stage work for the object loader. Please note that I needed to change the object (de)serializer, I can't outrule that I have introduced bugs there. | ||||
* | changed obj base object's calling interface to use the new obj_if_t | Rainer Gerhards | 2008-02-29 | 1 | -17/+33 |
| | | | | interface structure | ||||
* | simplified var object, now only supports strings and numbers as a single | Rainer Gerhards | 2008-02-22 | 1 | -4/+4 |
| | | | | type | ||||
* | used new classes in expr.c | Rainer Gerhards | 2008-02-20 | 1 | -0/+1 |
| | |||||
* | created var class out of property_t | Rainer Gerhards | 2008-02-20 | 1 | -4/+5 |
| | |||||
* | - renamed Msg object to usual all-lowercase object name (else we ran into | Rainer Gerhards | 2008-01-30 | 1 | -0/+1 |
| | | | | | | troubles with the framework, also it was somewhat ugly...) - fixed a memory leak in object destruction (was recently introduced by object naming, not present in any released version) | ||||
* | implemented naming for all objects (mostly as a debug aid, but you never | Rainer Gerhards | 2008-01-29 | 1 | -2/+4 |
| | | | | know what else it will be good for) | ||||
* | redesigned queue to utilize helper classes for threading support. This is | Rainer Gerhards | 2008-01-24 | 1 | -14/+0 |
| | | | | | | 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 Lorbach | 2008-01-22 | 1 | -1/+1 |
| | |||||
* | added debug aides for mutex operations | Rainer Gerhards | 2008-01-22 | 1 | -0/+14 |
| | |||||
* | worked on threading | Rainer Gerhards | 2008-01-17 | 1 | -1/+1 |
| | |||||
* | implemented $MainMsgQueueDiscardMar and $MainMsgQueueDiscardSeverity (but | Rainer Gerhards | 2008-01-14 | 1 | -0/+1 |
| | | | | serverity needs to be specified numerically for the time being) | ||||
* | support for reading back persistet queue information completed | Rainer Gerhards | 2008-01-13 | 1 | -1/+1 |
| | |||||
* | partial ability to read a disk queue back in (not completed, but would like | Rainer Gerhards | 2008-01-11 | 1 | -0/+1 |
| | | | | to save source for the weekend) | ||||
* | added function to de-serialize a property bag (untested as other code is | Rainer Gerhards | 2008-01-11 | 1 | -0/+1 |
| | | | | yet missing) | ||||
* | support for object property bags added | Rainer Gerhards | 2008-01-11 | 1 | -0/+1 |
| | |||||
* | file stream objects are now persistet on immediate queue shutdown (queue | Rainer Gerhards | 2008-01-11 | 1 | -2/+8 |
| | | | | itself is not yet fully persisted) | ||||
* | - implemented strm object serializer (untested as the code required for | Rainer Gerhards | 2008-01-10 | 1 | -0/+2 |
| | | | | test is not yet present - hen/egg problem...) | ||||
* | changed some config parameters and some cleanup | Rainer Gerhards | 2008-01-10 | 1 | -1/+1 |
| | |||||
* | - added write functions for several types to stream class | Rainer Gerhards | 2008-01-10 | 1 | -8/+7 |
| | | | | - changed objSerialize methods to work directly on the stream class | ||||
* | made queue file names better readable | Rainer Gerhards | 2008-01-10 | 1 | -0/+28 |
| | |||||
* | some cleanup on object model | Rainer Gerhards | 2008-01-09 | 1 | -123/+3 |
| | |||||
* | changed queue class to use stream class | Rainer Gerhards | 2008-01-09 | 1 | -0/+10 |
| | |||||
* | created a generic stream class (for file access) | Rainer Gerhards | 2008-01-09 | 1 | -5/+34 |
| | |||||
* | completed object deserializer | Rainer Gerhards | 2008-01-08 | 1 | -1/+1 |
| | |||||
* | - first implementation of "disk" queue mode finished. It still needs some | Rainer Gerhards | 2008-01-08 | 1 | -2/+3 |
| | | | | | | | work and the deserializer needs also to be expanded, but the queue at least performs well now. - fixed a race condition that could occur when input modules were terminated | ||||
* | - MsgSetProperty() implemented | Rainer Gerhards | 2008-01-07 | 1 | -7/+36 |
| | | | | | - defined a property class - implemented deserializer (needs some more work) | ||||
* | implemented class type registry | Rainer Gerhards | 2008-01-07 | 1 | -1/+5 |
| | |||||
* | performance-tuned stringbuf class | Rainer Gerhards | 2008-01-07 | 1 | -1/+1 |
| | |||||
* | worked on object header (now also contains the size) | Rainer Gerhards | 2008-01-06 | 1 | -2/+3 |
| | |||||
* | completed serializer for msg (but needs review) | Rainer Gerhards | 2008-01-06 | 1 | -1/+7 |
| | |||||
* | worked a bit on object serialization | Rainer Gerhards | 2008-01-06 | 1 | -3/+21 |
| | |||||
* | utilized the new auto-destruction capability so that the queue can now | Rainer Gerhards | 2008-01-04 | 1 | -1/+1 |
| | | | | destruct user objects if needed | ||||
* | removed serialization pointer from queue; used new base class instead | Rainer Gerhards | 2008-01-04 | 1 | -2/+3 |
| | |||||
* | - begun some work on Msg Object serializiation | Rainer Gerhards | 2008-01-04 | 1 | -0/+82 |
- created a kind of general base class |