From 744e4bfd6f6323979ce154617e8b454292913696 Mon Sep 17 00:00:00 2001 From: philsmd <921533+philsmd@users.noreply.github.com> Date: Sat, 11 Jan 2020 11:26:55 +0100 Subject: [PATCH] use BRAIN_SERVER_TIMER instead of BRAIN_SERVER_DUMP_EVERY --- include/brain.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/brain.h b/include/brain.h index e119a8f03..fcd370772 100644 --- a/include/brain.h +++ b/include/brain.h @@ -41,7 +41,7 @@ #include "xxhash.h" static const int BRAIN_CLIENT_CONNECT_TIMEOUT = 5; -static const int BRAIN_SERVER_DUMP_EVERY = 5 * 60; +static const int BRAIN_SERVER_TIMER = 5 * 60; static const int BRAIN_SERVER_SESSIONS_MAX = 64; static const int BRAIN_SERVER_ATTACKS_MAX = 64 * 1024; static const int BRAIN_SERVER_CLIENTS_MAX = 256;