diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-02-13 08:14:47 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-02-13 08:14:47 +0000 |
commit | 722e691af737862b32515fd5644feb33547eff8f (patch) | |
tree | c6730a14de9a90d9012aac2243e5c87ae743f9b1 /syslogd.h | |
parent | 088ad960e9d77d6a58a3914e53275a5e40b85dc3 (diff) | |
download | rsyslog-722e691af737862b32515fd5644feb33547eff8f.tar.gz rsyslog-722e691af737862b32515fd5644feb33547eff8f.tar.xz rsyslog-722e691af737862b32515fd5644feb33547eff8f.zip |
- introduced a new, more powerful, message submission interface submitMsg()
in additon to logmsg()
- a first, rough implementation of imfile that is able to read files (but
does not persist or handle rotation or whatever)
Diffstat (limited to 'syslogd.h')
-rw-r--r-- | syslogd.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -71,6 +71,7 @@ int getSubString(uchar **ppSrc, char *pDst, size_t DstSize, char cSep); */ rsRetVal logmsgInternal(int pri, char *msg, int flags); void logmsg(msg_t *pMsg, int flags); +rsRetVal submitMsg(msg_t *pMsg); extern int glblHadMemShortage; /* indicates if we had memory shortage some time during the run */ extern char LocalHostName[]; extern int family; |