|
|
|
@ -859,7 +859,9 @@ bool AppInitParameterInteraction()
@@ -859,7 +859,9 @@ bool AppInitParameterInteraction()
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// Make sure enough file descriptors are available
|
|
|
|
|
int nBind = std::max((int)mapArgs.count("-bind") + (int)mapArgs.count("-whitebind"), 1); |
|
|
|
|
int nBind = std::max( |
|
|
|
|
(mapMultiArgs.count("-bind") ? mapMultiArgs.at("-bind").size() : 0) + |
|
|
|
|
(mapMultiArgs.count("-whitebind") ? mapMultiArgs.at("-whitebind").size() : 0), size_t(1)); |
|
|
|
|
nUserMaxConnections = GetArg("-maxconnections", DEFAULT_MAX_PEER_CONNECTIONS); |
|
|
|
|
nMaxConnections = std::max(nUserMaxConnections, 0); |
|
|
|
|
|
|
|
|
|