From 1918c29fd7ee8f82e8f0428747b8f3ee4d913704 Mon Sep 17 00:00:00 2001 From: Joseph Henry Date: Fri, 25 Feb 2022 11:29:07 -0800 Subject: [PATCH] Change ECHO divisor from 20 to 6 --- node/Path.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/Path.hpp b/node/Path.hpp index ae12bf4bc..3471e2d66 100644 --- a/node/Path.hpp +++ b/node/Path.hpp @@ -273,7 +273,7 @@ public: */ inline bool rateGateEchoRequest(const int64_t now) { - if ((now - _lastEchoRequestReceived) >= (ZT_PEER_GENERAL_RATE_LIMIT / 20)) { + if ((now - _lastEchoRequestReceived) >= (ZT_PEER_GENERAL_RATE_LIMIT / 6)) { _lastEchoRequestReceived = now; return true; }