summaryrefslogtreecommitdiffstats
path: root/tcpclt.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2009-07-14 16:57:49 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2009-07-14 19:45:26 +0200
commit935a9eef5770a4a298d1ccefab59e3863210fc68 (patch)
tree929fe1f70e7c648a1ca52d886f7b633869eb79e2 /tcpclt.h
parent9e81945a64fa25bb47348fe7eff502d7852045b5 (diff)
downloadrsyslog-935a9eef5770a4a298d1ccefab59e3863210fc68.tar.gz
rsyslog-935a9eef5770a4a298d1ccefab59e3863210fc68.tar.xz
rsyslog-935a9eef5770a4a298d1ccefab59e3863210fc68.zip
added tcp output rebinding option.
added tcp output rebinding option. needs some more testing and doc
Diffstat (limited to 'tcpclt.h')
-rw-r--r--tcpclt.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/tcpclt.h b/tcpclt.h
index 1d704044..5a8eba75 100644
--- a/tcpclt.h
+++ b/tcpclt.h
@@ -36,6 +36,8 @@ typedef struct tcpclt_s {
short bResendLastOnRecon; /* should the last message be resent on a successful reconnect? */
size_t lenPrevMsg;
/* session specific callbacks */
+ int iRebindInterval; /* how often should the send socket be rebound? */
+ int iNumMsgs; /* number of messages during current "rebind session" */
rsRetVal (*initFunc)(void*);
rsRetVal (*sendFunc)(void*, char*, size_t);
rsRetVal (*prepRetryFunc)(void*);
@@ -55,8 +57,10 @@ BEGINinterface(tcpclt) /* name must also be changed in ENDinterface macro! */
rsRetVal (*SetSendFrame)(tcpclt_t*, rsRetVal (*)(void*, char*, size_t));
rsRetVal (*SetSendPrepRetry)(tcpclt_t*, rsRetVal (*)(void*));
rsRetVal (*SetFraming)(tcpclt_t*, TCPFRAMINGMODE framing);
+ /* v3, 2009-07-14*/
+ rsRetVal (*SetRebindInterval)(tcpclt_t*, int iRebindInterval);
ENDinterface(tcpclt)
-#define tcpcltCURR_IF_VERSION 2 /* increment whenever you change the interface structure! */
+#define tcpcltCURR_IF_VERSION 3 /* increment whenever you change the interface structure! */
/* prototypes */