X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=src%2Firc.cpp;h=a29874ebfbdafd3111b3bc407013f75986ee322f;hb=5a7a2125b6b4ed7d3ea55f333d0cf2345bd1d916;hp=ecdafaaceaf8e261fc16199fa345f7a2b63a2fcd;hpb=09bb63d7438ad8550288b852695dea78cff3babc;p=novacoin.git diff --git a/src/irc.cpp b/src/irc.cpp index ecdafaa..a29874e 100644 --- a/src/irc.cpp +++ b/src/irc.cpp @@ -75,7 +75,7 @@ static bool Send(SOCKET hSocket, const char* pszSend) bool RecvLineIRC(SOCKET hSocket, string& strLine) { - while (true) + for ( ; ; ) { bool fRet = RecvLine(hSocket, strLine); if (fRet) @@ -98,7 +98,7 @@ bool RecvLineIRC(SOCKET hSocket, string& strLine) int RecvUntil(SOCKET hSocket, const char* psz1, const char* psz2=NULL, const char* psz3=NULL, const char* psz4=NULL) { - while (true) + for ( ; ; ) { string strLine; strLine.reserve(10000); @@ -133,7 +133,7 @@ bool Wait(int nSeconds) bool RecvCodeLine(SOCKET hSocket, const char* psz1, string& strRet) { strRet.clear(); - while (true) + for ( ; ; ) { string strLine; if (!RecvLineIRC(hSocket, strLine)) @@ -260,7 +260,7 @@ void ThreadIRCSeed2(void* parg) // or if it keeps failing because the nick is already in use. if (!fNoListen && GetLocal(addrLocal, &addrIPv4) && nNameRetry<3) strMyName = EncodeAddress(GetLocalAddress(&addrConnect)); - if (strMyName == "") + if (strMyName.empty()) strMyName = strprintf("x%" PRIu64 "", GetRand(1000000000)); Send(hSocket, strprintf("NICK %s\r", strMyName.c_str()).c_str());