summaryrefslogtreecommitdiffstats
path: root/syslogd.c
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* applied Michael Biebl's patch to enhance $includeconfig to support wildcardRainer Gerhards2007-12-181-8/+32
| | | | filenames
* code cleanups thanks to Michael BieblRainer Gerhards2007-12-181-1/+0
|
* restructured #include's somewhat thanks to Michael BieblRainer Gerhards2007-12-181-0/+4
|
* - implemented afterRun input module interface functionRainer Gerhards2007-12-171-2/+1
| | | | - implemented $klogSymbolsTwice config directive
* begun imklog, replacing klogd.c (finally we get rid of it...)Rainer Gerhards2007-12-171-2/+0
|
* implemented $MarkMessagePeriod config directiveRainer Gerhards2007-12-171-5/+8
|
* removed initial IMMARK coding - no longer neededRainer Gerhards2007-12-171-23/+2
|
* moved thread termination code out to threads.cRainer Gerhards2007-12-171-6/+0
|
* created thread-class internal wrapper for calling user supplied thread mainRainer Gerhards2007-12-171-1/+2
| | | | function
* fixed a potential race condition with enqueueMsg() - thanks to mildew forRainer Gerhards2007-12-171-12/+1
| | | | making me aware of this issue
* graceful termination now supportedRainer Gerhards2007-12-141-9/+4
|
* first rough version of input module thread terminationRainer Gerhards2007-12-141-4/+12
|
* added thread activationRainer Gerhards2007-12-141-0/+2
|
* on the way to a real input module interface and threading class...Rainer Gerhards2007-12-141-4/+35
|
* - begun to create input module interface and macrosRainer Gerhards2007-12-141-5/+18
| | | | - changed module interface to include function to query type
* moved core threading helpers out of syslogd.cRainer Gerhards2007-12-141-149/+5
|
* changed license to GPLv3 (for what is to become rsyslog v3)Rainer Gerhards2007-12-141-7/+16
|
* begin work on on immark, the first input module. In the long term this willRainer Gerhards2007-12-141-3/+29
| | | | lead to a complete rewrite of the input system
* some cleanup (very minor)Rainer Gerhards2007-12-121-1/+5
|
* handled selector flushing on termination (and hup) correctly. Could loseRainer Gerhards2007-12-121-8/+16
| | | | some information before.
* fixed a potential race condition, see link for details:Rainer Gerhards2007-12-111-24/+43
| | | | http://rgerhards.blogspot.com/2007/12/rsyslog-race-condition.html