summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2011-06-21 16:22:10 +0200
committerMichael Biebl <biebl@debian.org>2011-06-21 16:22:10 +0200
commitd5294b644649f563f4aa77735ebc6db6ee1776de (patch)
tree3b0e2e3d70374573ee2ed7fe03cd84fc499f2d46 /plugins
parent734f0031f3366c83552de8b0e628949d47ff9487 (diff)
downloadrsyslog-d5294b644649f563f4aa77735ebc6db6ee1776de.tar.gz
Imported Upstream version 5.8.2upstream/5.8.2
Diffstat (limited to 'plugins')
-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 13fd442..20c4f45 100644
--- a/plugins/imrelp/imrelp.c
+++ b/plugins/imrelp/imrelp.c
@@ -60,8 +60,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
@@ -173,7 +171,6 @@ ENDmodExit
static rsRetVal
resetConfigVariables(uchar __attribute__((unused)) *pp, void __attribute__((unused)) *pVal)
{
- iTCPSessMax = 200;
return RS_RET_OK;
}
@@ -197,8 +194,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