diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2009-06-02 10:31:42 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2009-06-02 10:31:42 +0200 |
commit | 14d1209640e3554c4284eab136f9932cfc441126 (patch) | |
tree | 50375e512e6f412cac57ec560c547ea170ea6253 /runtime/rsyslog.h | |
parent | 25daa04902f2754a487973c4de707869d66b84c1 (diff) | |
download | rsyslog-14d1209640e3554c4284eab136f9932cfc441126.tar.gz rsyslog-14d1209640e3554c4284eab136f9932cfc441126.tar.xz rsyslog-14d1209640e3554c4284eab136f9932cfc441126.zip |
added a generic network stream server
(in addition to rather specific syslog tcp server)
Diffstat (limited to 'runtime/rsyslog.h')
-rw-r--r-- | runtime/rsyslog.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/rsyslog.h b/runtime/rsyslog.h index 2f15f926..293e559b 100644 --- a/runtime/rsyslog.h +++ b/runtime/rsyslog.h @@ -85,10 +85,13 @@ typedef struct permittedPeers_s permittedPeers_t; /* this should go away in the typedef struct permittedPeerWildcard_s permittedPeerWildcard_t; /* this should go away in the long term -- rgerhards, 2008-05-19 */ typedef struct tcpsrv_s tcpsrv_t; typedef struct tcps_sess_s tcps_sess_t; +typedef struct strmsrv_s strmsrv_t; +typedef struct strms_sess_s strms_sess_t; typedef struct vmstk_s vmstk_t; typedef rsRetVal (*prsf_t)(struct vmstk_s*, int); /* pointer to a RainerScript function */ typedef struct tcpLstnPortList_s tcpLstnPortList_t; // TODO: rename? +typedef struct strmLstnPortList_s strmLstnPortList_t; // TODO: rename? /* some universal 64 bit define... */ typedef long long int64; |