summaryrefslogtreecommitdiffstats
path: root/syslogd.c
Commit message (Collapse)AuthorAgeFilesLines
* - first implementation of "disk" queue mode finished. It still needs someRainer Gerhards2008-01-081-4/+9
| | | | | | | 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() implementedRainer Gerhards2008-01-071-30/+12
| | | | | - defined a property class - implemented deserializer (needs some more work)
* implemented class type registryRainer Gerhards2008-01-071-0/+1
|
* removed some no-longer-needed code (thanks Michael Biebl for the help)Rainer Gerhards2008-01-051-4/+0
|
* - added multiple worker thread capability to queue classRainer Gerhards2008-01-051-3/+12
| | | | - implemented $MainMsgQueueWorkerThreads config directive
* added the "direct" queueing mode to queue class (no queing at all)Rainer Gerhards2008-01-051-3/+14
|
* added capability for concurrent access to the msg class. Can be dynamicallyRainer Gerhards2008-01-051-0/+5
| | | | activated. If active, locking is employed.
* changed queue object Construction/Startup interfaceRainer Gerhards2008-01-041-1/+5
|
* moved message destruction back to consumer - the consume should decide whatRainer Gerhards2008-01-041-6/+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-041-1/+4
| | | | destruct user objects if needed
* removed serialization pointer from queue; used new base class insteadRainer Gerhards2008-01-041-1/+1
|
* - begun some work on Msg Object serializiationRainer Gerhards2008-01-041-1/+24
| | | | - created a kind of general base class
* begun working on disk queueing (not completed, do not use this mode!)Rainer Gerhards2008-01-031-0/+3
|
* added $MainMsgQueueFilePrefix config parameterRainer Gerhards2008-01-031-2/+8
|
* added $SpoolDirectory config parameterRainer Gerhards2008-01-031-20/+27
|
* added $MainMsgQueueType config parameterRainer Gerhards2008-01-031-4/+30
|
* added capability to use a linked list for queuing to the queue classRainer Gerhards2008-01-031-1/+2
|
* 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-031-189/+41
|
* restructured queue interface to use rsRetVal and instances, removedRainer Gerhards2008-01-031-8/+10
| | | | dependency on globals - now more like a real class
* moved queue code to its own module (finally)Rainer Gerhards2008-01-031-0/+1
|
* some cleanupRainer Gerhards2007-12-271-2/+2
|
* removed gloable variable AcceptRemote and external def of bFinishedRainer Gerhards2007-12-261-1/+1
|
* removed global variable LogPortRainer Gerhards2007-12-261-34/+3
|
* removed active INET code from syslogd.c - still some auxiliary thingsRainer Gerhards2007-12-261-25/+6
| | | | remain
* removed imudp code dependency on "finet"Rainer Gerhards2007-12-261-27/+1
|
* removed omfwd code dependency on finetRainer Gerhards2007-12-261-3/+3
|
* moved cross-platform define for AI_NUMERICSERV to net.hRainer Gerhards2007-12-261-13/+0
|
* moved some of the udp input code to its right placeRainer Gerhards2007-12-251-13/+4
|
* moved udp net code - again, stage workRainer Gerhards2007-12-251-165/+1
|
* fixed duplicate license textRainer Gerhards2007-12-251-24/+8
|
* moved some more network codeRainer Gerhards2007-12-251-42/+0
|
* moved some more net functionality out of syslogd.c - stage workRainer Gerhards2007-12-251-508/+0
|
* some cleanupRainer Gerhards2007-12-211-14/+10
|
* finally, alarm() has gone away :) -- this is now done by the main threadRainer Gerhards2007-12-211-58/+21
|
* removed code no longer neededRainer Gerhards2007-12-211-55/+8
|
* - created an initial version of imudp.c. The majority of UDP reception codeRainer Gerhards2007-12-211-70/+2
| | | | | | | | | | is now in that module and it is dynamically loadable. HOWEVER, that doesn't mean it is a proper module. There are still many, many dependencies on global variables, cross-module calls and such. However, havin the code base separated allows me to carry out some other cleanup before I return to create a really clean implementation of these modules. So it is kind of a stage work. Just don't mistake it with "the real thing"...
* cleaned up code (resulting in some shuffeling from syslogd.c to the "right"Rainer Gerhards2007-12-211-67/+6
| | | | module)
* created first version of imtcp (still very much depending on syslogd.c forRainer Gerhards2007-12-211-139/+1
| | | | configuration and a lot of other things)
* removed single-threading support for sending TCP messages; causedRainer Gerhards2007-12-201-180/+3
| | | | | simplyfication of output module interface as well as core syslog processing.
* implemented $AddUnixListenSocket config directiveRainer Gerhards2007-12-201-16/+1
|
* implemented $SystemLogSocketName config directiveRainer Gerhards2007-12-201-14/+0
|
* implemented $OmitLocalLogging config directiveRainer Gerhards2007-12-201-3/+0
|
* moved unix socket code to its own module (imuxsock)Rainer Gerhards2007-12-201-107/+4
|
* bugfix: fixing memory leak when message queue is full and during parsing.Rainer Gerhards2007-12-201-2/+8
| | | | Thanks to varmojfekoj for the patch.
* slight change to init() to prevent race conditionRainer Gerhards2007-12-191-1/+2
|
* enhanced -c option support (some basics)Rainer Gerhards2007-12-191-4/+28
|
* applied enhanced gss-api functionality provided by varmojfekojRainer Gerhards2007-12-191-20/+68
|
* cleaned up char/uchar issueRainer Gerhards2007-12-191-3/+3
|
* applied some more cleanup provided by Michael BieblRainer Gerhards2007-12-191-4/+1
|