diff options
author | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-07-02 23:43:29 +0000 |
---|---|---|
committer | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-07-02 23:43:29 +0000 |
commit | f077bc0f48bf0853cbe5d01b0e10df93c04917ab (patch) | |
tree | b812b188cb672c3b1ea1ebae976c6721683fa142 /net.cpp | |
parent | 06c47163962ce418569d9386770001c7a79c026e (diff) |
reduced max outbound connections from 15 to 8 --version 0.3 rc4v0.3rc4
git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@96 1a98c847-1fd6-4fd8-948a-caf3550aa51b
Diffstat (limited to 'net.cpp')
-rw-r--r-- | net.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -882,7 +882,7 @@ void ThreadOpenConnections2(void* parg) // Wait
vnThreadsRunning[1]--;
Sleep(500);
- const int nMaxConnections = 15;
+ const int nMaxConnections = 8;
while (vNodes.size() >= nMaxConnections)
{
Sleep(2000);
|