mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01: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;
|
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;
|
extern const std::set<NodeType_t> SOLO_NODE_TYPES;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue