mirror of
https://github.com/lubosz/overte.git
synced 2025-04-23 16:14:01 +02:00
Set default limit for other nodes to size_t max
This commit is contained in:
parent
9ea41f7122
commit
a804d3532e
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ const int INVALID_PORT = -1;
|
|||
|
||||
const quint64 NODE_SILENCE_THRESHOLD_MSECS = 5 * 1000;
|
||||
|
||||
static const size_t DEFAULT_MAX_CONNECTION_RATE { 50 };
|
||||
static const size_t DEFAULT_MAX_CONNECTION_RATE { std::numeric_limits<size_t>::max() };
|
||||
|
||||
extern const std::set<NodeType_t> SOLO_NODE_TYPES;
|
||||
|
||||
|
|
Loading…
Reference in a new issue