git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@75 1a98c847-1fd6-4fd8-948a-caf3550aa51b
This commit is contained in:
s_nakamoto 2010-03-05 02:55:09 +00:00
parent 2cffa7ce31
commit 966cca4bd4
1 changed files with 4 additions and 1 deletions

View File

@ -76,6 +76,8 @@ bool RecvLine(SOCKET hSocket, string& strLine)
if (c == '\r') if (c == '\r')
return true; return true;
strLine += c; strLine += c;
if (strLine.size() >= 9000)
return true;
} }
else if (nBytes <= 0) else if (nBytes <= 0)
{ {
@ -109,7 +111,7 @@ bool RecvLineIRC(SOCKET hSocket, string& strLine)
return false; return false;
vector<string> vWords; vector<string> vWords;
ParseString(strLine, ' ', vWords); ParseString(strLine, ' ', vWords);
if (vWords[0] == "PING") if (vWords.size() >= 1 && vWords[0] == "PING")
{ {
strLine[1] = 'O'; strLine[1] = 'O';
strLine += '\r'; strLine += '\r';
@ -156,6 +158,7 @@ bool Wait(int nSeconds)
void ThreadIRCSeed(void* parg) void ThreadIRCSeed(void* parg)
{ {
printf("ThreadIRCSeed started\n");
SetThreadPriority(THREAD_PRIORITY_NORMAL); SetThreadPriority(THREAD_PRIORITY_NORMAL);
int nErrorWait = 10; int nErrorWait = 10;
int nRetryWait = 10; int nRetryWait = 10;