summaryrefslogtreecommitdiffstats
path: root/rsyslog.h
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'bsd-port'Rainer Gerhards2008-04-151-0/+1
|\ | | | | | | | | | | | | Conflicts: ChangeLog plugins/imklog/imklog.c
| * provided ability to discard non-kernel messages present in the kernel msg bufferRainer Gerhards2008-04-141-0/+1
| | | | | | | | | | | | | | This obviously happens on BSD (<118> markers seen). We now have the ability to allow or prevent it, with the default being not permitted. Should not at all affect other drivers, but it is implemented on a common code basis, not on the driver layer.
* | Merge branch 'v3-stable' into MAXHOSTNAMELENRainer Gerhards2008-04-101-0/+2
|\ \ | |/ |/| | | | | | | Conflicts: configure.ac
| * bugfix: omsnmp had a too-small sized buffer for hostname+port.Rainer Gerhards2008-04-101-0/+2
| | | | | | | | | | This could not lead to a segfault, as snprintf() was used, but could cause some trouble with extensively long hostnames.
* | finalized mail output supportRainer Gerhards2008-04-081-0/+2
| |
* | smtp response codes are now correctly checkedRainer Gerhards2008-04-071-0/+1
| |
* | an initial, somewhat working, tester for the mail functionalityRainer Gerhards2008-04-041-0/+1
| |
* | added more meaningful error messages to rsyslogd (when some errors happensRainer Gerhards2008-04-021-0/+5
|/ | | | during startup)
* added advanced flow control for congestion cases (mode depending on messageRainer Gerhards2008-03-141-0/+10
| | | | source and its capablity to be delayed without bad side effects)
* implemented module unload handling (required a number of interface changes)Rainer Gerhards2008-03-111-0/+3
|
* extracted regexp functionality to its own dynamically loadable moduleRainer Gerhards2008-03-071-0/+2
|
* some minor things in regard to portabilityRainer Gerhards2008-03-061-0/+1
|
* - changed modules.c calling conventions to be interface-basedRainer Gerhards2008-03-051-1/+3
| | | | | | | | | | | - moved module loader from conf.c to module.c, where it belongs - made the necessary plumbing to auto-load library modules - upgraded debug system to include iRet in function exit message - changed module interface so that instances need only to be supported by output plugins (if we actually need them for input plugins, we can always add it again...) - milestone: first implementation of library modules (but do not get unloaded on exit/hup so far)
* did some portability changes to make rsyslog compile on HP UXRainer Gerhards2008-03-051-0/+4
|
* - changed module interface to support querying obj interface (stage work)Rainer Gerhards2008-03-041-0/+2
| | | | - changed module interface version, as the interface change is quite large
* fixed newly introduced bugs in imgssapi and imtcp and their helpers nowRainer Gerhards2008-03-031-0/+1
| | | | plain tcp works again
* - added "debug" command to debug environment settingsRainer Gerhards2008-02-291-0/+2
| | | | | | | | | - 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.
* bugfix: object property deserializer did not handle negative numbersRainer Gerhards2008-02-271-1/+2
|
* - added sysvar classRainer Gerhards2008-02-251-0/+5
| | | | - added PUSHSYSVAR operation to vm
* - added some thoughts on RainerScriptRainer Gerhards2008-02-241-1/+3
| | | | - worked a bit on conversion functions
* worked a bit on type conversion (specified the interface)Rainer Gerhards2008-02-221-0/+1
|
* begun implementing rsyslog virtual machine (vm class)Rainer Gerhards2008-02-221-0/+1
|
* completed initial vmstk implementationRainer Gerhards2008-02-221-0/+2
|
* first steps in implementing object interfaces (stage work for later dynamicRainer Gerhards2008-02-211-0/+1
| | | | class loading)
* - begun implementation of expression parsing logicRainer Gerhards2008-02-191-0/+3
| | | | - implemented, simpstr, var, number in tokenizer
* implemented initial tokenizer (stage work for expr parser)Rainer Gerhards2008-02-191-0/+1
|
* - implemented $ActionLibdbiDriverDirectory config directiveRainer Gerhards2008-02-151-0/+1
| | | | | - some cleanup - doc improvements
* did some more work on omlibdbi, but did not yet get libdbi working. I guessRainer Gerhards2008-02-151-0/+1
| | | | its a compile problem, but have not found it so far.
* error handling and cleanup in imfileRainer Gerhards2008-02-141-0/+2
|
* done some more work on omsnmp to bring it fully in line with recent rsyslogRainer Gerhards2008-02-111-2/+2
| | | | developments
* bugfix: having fun with 32/64 bit portability - after 15 years, I finallyRainer Gerhards2008-01-311-0/+5
| | | | | was trapped again ;) -- now fixed, sizes > 2GB supported on 32bit platforms
* cleanup to prepare for releaseRainer Gerhards2008-01-281-0/+1
|
* redesigned queue to utilize helper classes for threading support. This isRainer Gerhards2008-01-241-5/+6
| | | | | | 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...
* fixed sync issue on shutdown process if need to persist pure memory queueRainer Gerhards2008-01-171-1/+1
| | | | to disk
* worked on threadingRainer Gerhards2008-01-171-1/+1
|
* implemented dynamic startup and shutdown of worker threads based on currentRainer Gerhards2008-01-161-0/+1
| | | | activity
* - implemented $MainMsgQueueDiscardMark == 0 --> disable Discard logicRainer Gerhards2008-01-141-0/+1
| | | | - implemented $MainMsgQueueSize == 0 --> no limit on queue size
* worker shutdown sequence enhanced to try different ways to shut down andRainer Gerhards2008-01-141-0/+1
| | | | | terminate workers if none helps (this protects against badly written output plugins which hold the queue for too long)
* support for reading back persistet queue information completedRainer Gerhards2008-01-131-1/+5
|
* partial ability to read a disk queue back in (not completed, but would likeRainer Gerhards2008-01-111-0/+2
| | | | to save source for the weekend)
* support for de-serializing strm objects addedRainer Gerhards2008-01-111-0/+1
|
* added function to de-serialize a property bag (untested as other code isRainer Gerhards2008-01-111-0/+1
| | | | yet missing)
* some cleanupRainer Gerhards2008-01-101-4/+4
|
* changed queue class to use stream classRainer Gerhards2008-01-091-1/+1
|
* implemented queue object method to set the file name prefixRainer Gerhards2008-01-091-0/+1
|
* - implemented new GetSize() handler for config filesRainer Gerhards2008-01-091-0/+1
| | | | - implemented $MainMsgQueueMaxFileSize configuration directive
* - MsgSetProperty() implementedRainer Gerhards2008-01-071-0/+9
| | | | | - defined a property class - implemented deserializer (needs some more work)
* implemented class type registryRainer Gerhards2008-01-071-0/+1
|
* implemented buffered read calls for the queue fileRainer Gerhards2008-01-071-0/+2
|
* queue is now a full object and handles threading by itselfRainer Gerhards2008-01-031-0/+1
|