Fix -maxconnections. It used to account for the 8 outbound connections twice when...
authorChris Moore <dooglus@gmail.com>
Sun, 23 Jan 2011 08:08:09 +0000 (00:08 -0800)
committerChris Moore <dooglus@gmail.com>
Sun, 23 Jan 2011 08:08:09 +0000 (00:08 -0800)
net.cpp

diff --git a/net.cpp b/net.cpp
index a626acd..bfa6b05 100644 (file)
--- a/net.cpp
+++ b/net.cpp
@@ -688,12 +688,25 @@ void ThreadSocketHandler2(void* parg)
             socklen_t len = sizeof(sockaddr);
             SOCKET hSocket = accept(hListenSocket, (struct sockaddr*)&sockaddr, &len);
             CAddress addr(sockaddr);
+            bool fLimitConnections = false;
+            int nInbound = 0;
+
+            if (mapArgs.count("-maxconnections"))
+                fLimitConnections = true;
+
+            if (fLimitConnections)
+            {
+                CRITICAL_BLOCK(cs_vNodes)
+                    foreach(CNode* pnode, vNodes)
+                    if (pnode->fInbound)
+                        nInbound++;
+            }
             if (hSocket == INVALID_SOCKET)
             {
                 if (WSAGetLastError() != WSAEWOULDBLOCK)
                     printf("socket error accept failed: %d\n", WSAGetLastError());
             }
-            else if (mapArgs.count("-maxconnections") && (int)vNodes.size() >= atoi(mapArgs["-maxconnections"]) - MAX_OUTBOUND_CONNECTIONS)
+            else if (fLimitConnections && nInbound >= atoi(mapArgs["-maxconnections"]) - MAX_OUTBOUND_CONNECTIONS)
             {
                 closesocket(hSocket);
             }