Merge pull request #522 from sipa/minorfix

SocketHandler thread can be detached
This commit is contained in:
Jeff Garzik 2011-09-20 11:47:02 -07:00
commit 700f942692

View file

@ -1713,7 +1713,7 @@ void StartNode(void* parg)
printf("Error: CreateThread(ThreadIRCSeed) failed\n"); printf("Error: CreateThread(ThreadIRCSeed) failed\n");
// Send and receive from sockets, accept connections // Send and receive from sockets, accept connections
CreateThread(ThreadSocketHandler, NULL, true); CreateThread(ThreadSocketHandler, NULL);
// Initiate outbound connections // Initiate outbound connections
if (!CreateThread(ThreadOpenConnections, NULL)) if (!CreateThread(ThreadOpenConnections, NULL))