aboutsummaryrefslogtreecommitdiff
path: root/src/net.h
diff options
context:
space:
mode:
authorMatt Quinn <matt@mattjquinn.com>2015-08-01 10:41:21 -0700
committerMatt Quinn <matt@mattjquinn.com>2015-08-03 14:37:00 -0700
commit19dd40a25f061fb8b16b9332826293f5d0b58a56 (patch)
tree6aca0a8e726c4c3a5fb8d8060c0970c06abf94d4 /src/net.h
parent219b916545f3be194eb53801bfb8d0694978fb00 (diff)
downloadbitcoin-19dd40a25f061fb8b16b9332826293f5d0b58a56.tar.xz
Consolidate individual references to the current maximum peer connection
value of 125 into a single constant declaration.
Diffstat (limited to 'src/net.h')
-rw-r--r--src/net.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/net.h b/src/net.h
index 658f586b12..aac28fe105 100644
--- a/src/net.h
+++ b/src/net.h
@@ -56,6 +56,8 @@ static const bool DEFAULT_UPNP = false;
#endif
/** The maximum number of entries in mapAskFor */
static const size_t MAPASKFOR_MAX_SZ = MAX_INV_SZ;
+/** The maximum number of peer connections to maintain. */
+static const unsigned int DEFAULT_MAX_PEER_CONNECTIONS = 125;
unsigned int ReceiveFloodSize();
unsigned int SendBufferSize();