From f077bc0f48bf0853cbe5d01b0e10df93c04917ab Mon Sep 17 00:00:00 2001 From: s_nakamoto Date: Fri, 2 Jul 2010 23:43:29 +0000 Subject: reduced max outbound connections from 15 to 8 --version 0.3 rc4 git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@96 1a98c847-1fd6-4fd8-948a-caf3550aa51b --- net.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'net.cpp') diff --git a/net.cpp b/net.cpp index 3c5c9bd3c..dc1debd2f 100644 --- a/net.cpp +++ b/net.cpp @@ -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); -- cgit v1.2.3