diff --git a/node/Path.hpp b/node/Path.hpp index fa55c2f99..ae12bf4bc 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 / 16)) { + if ((now - _lastEchoRequestReceived) >= (ZT_PEER_GENERAL_RATE_LIMIT / 20)) { _lastEchoRequestReceived = now; return true; }