summaryrefslogtreecommitdiffstats
path: root/tcpsrv.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2009-04-09 13:46:54 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2009-04-09 13:46:54 +0200
commit9b34b305d8de2012a969675148950b7e10a1924b (patch)
treece22e558b84cf418307a0e4ae1c2c19cafb9bbe2 /tcpsrv.h
parentaacb6dcbf49b75b223de09aa74c11c2f22f9da27 (diff)
parenta5b4cb1681174ad221a8440422e4cd0da0e32064 (diff)
downloadrsyslog-9b34b305d8de2012a969675148950b7e10a1924b.tar.gz
rsyslog-9b34b305d8de2012a969675148950b7e10a1924b.tar.bz2
rsyslog-9b34b305d8de2012a969675148950b7e10a1924b.zip
Merge branch 'master' into nextmaster
Conflicts: ChangeLog
Diffstat (limited to 'tcpsrv.h')
-rw-r--r--tcpsrv.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/tcpsrv.h b/tcpsrv.h
index 2924bafa..e5ecb865 100644
--- a/tcpsrv.h
+++ b/tcpsrv.h
@@ -92,11 +92,14 @@ BEGINinterface(tcpsrv) /* name must also be changed in ENDinterface macro! */
rsRetVal (*SetCBOnSessAccept)(tcpsrv_t*, rsRetVal (*) (tcpsrv_t*, tcps_sess_t*));
rsRetVal (*SetCBOnSessDestruct)(tcpsrv_t*, rsRetVal (*) (void*));
rsRetVal (*SetCBOnSessConstructFinalize)(tcpsrv_t*, rsRetVal (*) (void*));
+ /* added v5 */
+ rsRetVal (*SetSessMax)(tcpsrv_t *pThis, int iMaxSess); /* 2009-04-09 */
ENDinterface(tcpsrv)
-#define tcpsrvCURR_IF_VERSION 4 /* increment whenever you change the interface structure! */
+#define tcpsrvCURR_IF_VERSION 5 /* increment whenever you change the interface structure! */
/* change for v4:
* - SetAddtlFrameDelim() added -- rgerhards, 2008-12-10
* - SetInputName() added -- rgerhards, 2008-12-10
+ * change for v5 and up: see above
*/