summaryrefslogtreecommitdiffstats
path: root/syslogd-types.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2007-07-26 12:07:23 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2007-07-26 12:07:23 +0000
commit54669873b0469aa69a4c9f88bcf88470218082f8 (patch)
tree1042b7096d3332dc92abbb8c4ee9fdc0af1f7e55 /syslogd-types.h
parent1904ce3f5aa11f190c881ccda650c1f464fe9271 (diff)
downloadrsyslog-54669873b0469aa69a4c9f88bcf88470218082f8.tar.gz
rsyslog-54669873b0469aa69a4c9f88bcf88470218082f8.tar.xz
rsyslog-54669873b0469aa69a4c9f88bcf88470218082f8.zip
- implemented needUDPSocket() interface
- replaced (mis) use of f_prevcount in omfwd.c -> now data element in instance data is used for retry counting - removed f->f_type from syslogd.c, omfwd.c - removed f->f_file from omfwd.c, omfile.c - f->f_flags is gone away
Diffstat (limited to 'syslogd-types.h')
-rw-r--r--syslogd-types.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/syslogd-types.h b/syslogd-types.h
index ef333b3d..f986cb33 100644
--- a/syslogd-types.h
+++ b/syslogd-types.h
@@ -114,8 +114,6 @@ struct syslogTime {
};
-/* values for f_type in struct filed below*/
-
/* This structure represents the files that will have log
* copies printed.
* RGerhards 2004-11-08: Each instance of the filed structure
@@ -130,8 +128,6 @@ struct syslogTime {
*/
struct filed {
struct filed *f_next; /* next in linked list */
- /*__attribute__((deprecated))*/ short f_type; /* entry type, see below */
- short f_file; /* file descriptor */
short bEnabled; /* is the related action enabled (1) or disabled (0)? */
time_t f_time; /* time this was last written */
/* filter properties */
@@ -162,7 +158,6 @@ struct filed {
int f_ReduceRepeated; /* reduce repeated lines 0 - no, 1 - yes */
int f_prevcount; /* repetition cnt of prevline */
int f_repeatcount; /* number of "repeated" msgs */
- int f_flags; /* store some additional flags */
struct template *f_pTpl; /* pointer to template to use */
struct iovec *f_iov; /* dyn allocated depinding on template */
unsigned short *f_bMustBeFreed; /* indicator, if iov_base must be freed to destruct */