Fix calculation of number of bound sockets to use

This commit is contained in:
Matt Corallo 2016-11-29 17:49:08 -08:00
parent 3bf06e9bac
commit 9e1f46821d

View file

@ -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);