summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* omgssapi createdRainer Gerhards2007-12-289-65/+767
|
* moved TCPSend() and frame building code to tcpsyslog.cRainer Gerhards2007-12-283-230/+253
|
* took TCPSend() apart and made it generic via function pointersRainer Gerhards2007-12-282-97/+122
|
* internal restructuring in omfwd.c - stage work for further modularization IRainer Gerhards2007-12-273-152/+187
| | | | | think I also fixed a bug as a side-effect - but not looked to much at it
* some cleanupRainer Gerhards2007-12-279-15/+21
|
* applied cross-platform patch from darix to facilitate GSS-API compile onRainer Gerhards2007-12-275-5/+5
| | | | more platforms
* added capability to have multiple UDP listeners running concurrentlyRainer Gerhards2007-12-272-24/+73
|
* added new settingsRainer Gerhards2007-12-272-4/+29
|
* added $UDPServerAddress <ip> config directiveRainer Gerhards2007-12-272-42/+23
|
* removed gloable variable AcceptRemote and external def of bFinishedRainer Gerhards2007-12-262-4/+1
|
* removed no longer needed reference to "AcceptRemote"Rainer Gerhards2007-12-261-2/+3
|
* added doc for new imudp input moduleRainer Gerhards2007-12-262-0/+6
|
* removed global variable LogPortRainer Gerhards2007-12-264-44/+59
|
* removed useless code (is overwritten on return)Rainer Gerhards2007-12-261-1/+0
|
* fixed socket leak in omfwd.cRainer Gerhards2007-12-261-26/+6
|
* removed active INET code from syslogd.c - still some auxiliary thingsRainer Gerhards2007-12-264-29/+27
| | | | remain
* removed imudp code dependency on "finet"Rainer Gerhards2007-12-264-41/+21
|
* removed omfwd code dependency on finetRainer Gerhards2007-12-264-35/+84
|
* moved cross-platform define for AI_NUMERICSERV to net.hRainer Gerhards2007-12-262-13/+12
|
* moved some of the udp input code to its right placeRainer Gerhards2007-12-256-19/+19
|
* moved udp net code - again, stage workRainer Gerhards2007-12-254-165/+169
|
* fixed duplicate license textRainer Gerhards2007-12-251-24/+8
|
* moved some more network codeRainer Gerhards2007-12-254-43/+44
|
* moved some more net functionality out of syslogd.c - stage workRainer Gerhards2007-12-253-508/+510
|
* fixed typoRainer Gerhards2007-12-251-1/+1
|
* 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-212-56/+9
|
* - created an initial version of imudp.c. The majority of UDP reception codeRainer Gerhards2007-12-213-71/+65
| | | | | | | | | | 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"...
* ranted a little bit about the current modules...Rainer Gerhards2007-12-211-0/+13
|
* prepared for imudpRainer Gerhards2007-12-215-3/+158
|
* cleaned up code (resulting in some shuffeling from syslogd.c to the "right"Rainer Gerhards2007-12-214-69/+44
| | | | module)
* created first version of imtcp (still very much depending on syslogd.c forRainer Gerhards2007-12-214-146/+136
| | | | configuration and a lot of other things)
* begun work on imtcpRainer Gerhards2007-12-215-2/+164
|
* updated compatibiltiy notes according to latest state of the projectRainer Gerhards2007-12-211-0/+30
|
* added new v3 config file directivesRainer Gerhards2007-12-211-1/+15
|
* removed no longer needed mutex from omfwdRainer Gerhards2007-12-211-7/+0
|
* moved udp send code to its own functionRainer Gerhards2007-12-201-37/+50
|
* removed single-threading support for sending TCP messages; causedRainer Gerhards2007-12-2011-441/+8
| | | | | simplyfication of output module interface as well as core syslog processing.
* implemented $AddUnixListenSocket config directiveRainer Gerhards2007-12-202-29/+84
|
* changed termination sync typeRainer Gerhards2007-12-201-1/+1
|
* implemented $SystemLogSocketName config directiveRainer Gerhards2007-12-203-27/+25
|
* previous patch was incorrectRainer Gerhards2007-12-201-3/+4
|
* bugfix: memory leak in cfsysline.c/doGetWord() fixedRainer Gerhards2007-12-201-1/+9
|
* implemented $OmitLocalLogging config directiveRainer Gerhards2007-12-203-33/+13
|
* moved unix socket code to its own module (imuxsock)Rainer Gerhards2007-12-203-122/+135
|
* fixed race conditionRainer Gerhards2007-12-201-0/+1
|
* begun moving unix socket code to its own moduleRainer Gerhards2007-12-205-2/+144
|
* - implemented $klogUseSyscallInterface config directiveRainer Gerhards2007-12-201-10/+19
| | | | - implemented $klogSymbolLookup config directive
* - working on a potential race condition on the new input module interface.Rainer Gerhards2007-12-204-9/+43
| | | | | | | | | | See newsgroup posting for details on the issue: http://groups.google.com/group/comp.programming.threads/msg/330b9675f17 a1ad6 I tried some mutex operations but came to the conclusion that this does not really help. So I have now switched to plain thread cancellation, which so far seems to be OK. Need more practical experience with other input modules to make a final decision. Thus I leave all code in and have just disabled the problematic code.