From 37915f5b7ec07937c02d778292197d07a9535b86 Mon Sep 17 00:00:00 2001 From: Akkadius Date: Sun, 17 Feb 2019 03:29:23 -0600 Subject: [PATCH] Adjust default rule values --- common/ruletypes.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common/ruletypes.h b/common/ruletypes.h index 12ce35b6a..71a57145b 100644 --- a/common/ruletypes.h +++ b/common/ruletypes.h @@ -705,11 +705,11 @@ RULE_INT(Console, SessionTimeOut, 600000) // Amount of time in ms for the consol RULE_CATEGORY_END() RULE_CATEGORY(Network) -RULE_INT(Network, ResendDelayBaseMS, 50) +RULE_INT(Network, ResendDelayBaseMS, 100) RULE_REAL(Network, ResendDelayFactor, 1.5) -RULE_INT(Network, ResendDelayMinMS, 250) +RULE_INT(Network, ResendDelayMinMS, 100) RULE_INT(Network, ResendDelayMaxMS, 5000) -RULE_INT(Network, ResendsPerCycle, 10) +RULE_INT(Network, ResendsPerCycle, 1000) RULE_CATEGORY_END() RULE_CATEGORY(QueryServ)