summaryrefslogtreecommitdiffstats
path: root/tcps_sess.c
Commit message (Collapse)AuthorAgeFilesLines
* added capability to ignore client-provided timestamp on unix sockets andRainer Gerhards2008-03-061-5/+4
| | | | | | | | | | | made this mode the default; this was needed, as some programs (e.g. sshd) log with inconsistent timezone information, what messes up the local logs (which by default don't even contain time zone information). This seems to be consistent with what sysklogd did for the past four years. Alternate behaviour may be desirable if gateway-like processes send messages via the local log slot - in this case, it can be enabled via the $InputUnixListenSocketIgnoreMsgTimestamp and $SystemLogSocketIgnoreMsgTimestamp config directives
* - extracted logerror*() family of functions from syslogd, made them theirRainer Gerhards2008-03-051-5/+6
| | | | | | own class and converted to new object calling conventions (interface-based) - converted gss-misc into a loadable library module
* - changed modules.c calling conventions to be interface-basedRainer Gerhards2008-03-051-0/+1
| | | | | | | | | | | - 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)
* fixed newly introduced bugs in imgssapi and imtcp and their helpers nowRainer Gerhards2008-03-031-0/+5
| | | | plain tcp works again
* made imgssapi compileRainer Gerhards2008-03-031-16/+33
|
* - added class tcpsRainer Gerhards2008-03-021-0/+421
- added class tcps_sess - changed imtcp to use new classes; seems to work; imgssapi currently broken