summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2011-05-20 11:36:06 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2011-05-20 11:36:06 +0200
commit286cdde1e39812542f42018ae5726b96c179a8ec (patch)
tree7aa534622f74a54aa118cc95b603f5ef45756b79
parent702bac6dd6b391fbbd7ef9b74a1e171d6a62c144 (diff)
parentf847c2dda32488034f252e3bbd1a267714b99ff0 (diff)
downloadrsyslog-286cdde1e39812542f42018ae5726b96c179a8ec.tar.gz
rsyslog-286cdde1e39812542f42018ae5726b96c179a8ec.tar.xz
rsyslog-286cdde1e39812542f42018ae5726b96c179a8ec.zip
Merge branch 'v4-stable' into v4-devel
-rw-r--r--plugins/imrelp/imrelp.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/plugins/imrelp/imrelp.c b/plugins/imrelp/imrelp.c
index 9be38f8f..4d14b47a 100644
--- a/plugins/imrelp/imrelp.c
+++ b/plugins/imrelp/imrelp.c
@@ -59,8 +59,6 @@ static prop_t *pInputName = NULL; /* there is only one global inputName for all
/* config settings */
-static int iTCPSessMax = 200; /* max number of sessions */
-
/* ------------------------------ callbacks ------------------------------ */
#if 0
@@ -172,7 +170,6 @@ ENDmodExit
static rsRetVal
resetConfigVariables(uchar __attribute__((unused)) *pp, void __attribute__((unused)) *pVal)
{
- iTCPSessMax = 200;
return RS_RET_OK;
}
@@ -196,8 +193,6 @@ CODEmodInit_QueryRegCFSLineHdlr
/* register config file handlers */
CHKiRet(omsdRegCFSLineHdlr((uchar *)"inputrelpserverrun", 0, eCmdHdlrGetWord,
addListener, NULL, STD_LOADABLE_MODULE_ID));
- CHKiRet(omsdRegCFSLineHdlr((uchar *)"inputrelpmaxsessions", 0, eCmdHdlrInt,
- NULL, &iTCPSessMax, STD_LOADABLE_MODULE_ID));
CHKiRet(omsdRegCFSLineHdlr((uchar *)"resetconfigvariables", 1, eCmdHdlrCustomHandler,
resetConfigVariables, NULL, STD_LOADABLE_MODULE_ID));
ENDmodInit