diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2007-07-24 08:27:21 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2007-07-24 08:27:21 +0000 |
commit | f48f11f50e9337e499e6e7b56ca3f143cb55f181 (patch) | |
tree | d5aa1c07869fed909fae281cbe8f7e5266339e98 /syslogd-types.h | |
parent | 6c1dc3ccbcd05115f3737f2b2db06be2505e68c6 (diff) | |
download | rsyslog-f48f11f50e9337e499e6e7b56ca3f143cb55f181.tar.gz rsyslog-f48f11f50e9337e499e6e7b56ca3f143cb55f181.tar.bz2 rsyslog-f48f11f50e9337e499e6e7b56ca3f143cb55f181.zip |
changed action calling sequence to module interface/structure
Diffstat (limited to 'syslogd-types.h')
-rw-r--r-- | syslogd-types.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/syslogd-types.h b/syslogd-types.h index d4e9e81d..ee29c68a 100644 --- a/syslogd-types.h +++ b/syslogd-types.h @@ -135,7 +135,6 @@ struct syslogTime { */ struct filed { struct filed *f_next; /* next in linked list */ - int (*doAction)(struct filed *); /* method to call to perform an action */ short f_type; /* entry type, see below */ short f_file; /* file descriptor */ time_t f_time; /* time this was last written */ @@ -147,6 +146,7 @@ struct filed { EHostnameCmpMode eHostnameCmpMode; rsCStrObj *pCSHostnameComp;/* hostname to check */ rsCStrObj *pCSProgNameComp; /* tag to check or NULL, if not to be checked */ + struct moduleInfo *pMod; /* pointer to output module handling this selector */ union { u_char f_pmask[LOG_NFACILITIES+1]; /* priority mask */ struct { |