From 2f30a747ab285281620417f8848f40478d3e1705 Mon Sep 17 00:00:00 2001 From: Rozhuk Ivan Date: Thu, 16 Jun 2016 22:40:22 +0000 Subject: MRA: reduce CPU usage git-svn-id: http://svn.miranda-ng.org/main/trunk@16995 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/MRA/src/Mra_proto.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'protocols/MRA/src/Mra_proto.cpp') diff --git a/protocols/MRA/src/Mra_proto.cpp b/protocols/MRA/src/Mra_proto.cpp index df1b11d455..7ad1e79e70 100644 --- a/protocols/MRA/src/Mra_proto.cpp +++ b/protocols/MRA/src/Mra_proto.cpp @@ -209,7 +209,7 @@ DWORD CMraProto::MraNetworkDispatcher() mrim_packet_header_t *pmaHeader; NETLIBSELECT nls = { sizeof(nls) }; - nls.dwTimeout = NETLIB_SELECT_TIMEOUT; + nls.dwTimeout = 1000; nls.hReadConns[0] = m_hConnection; lpbBufferRcv = (LPBYTE)mir_calloc(dwRcvBuffSize); @@ -219,6 +219,7 @@ DWORD CMraProto::MraNetworkDispatcher() MraSendCMD(MRIM_CS_HELLO, NULL, 0); m_dwThreadWorkerLastPingTime = GetTickCount(); while (m_iStatus != ID_STATUS_OFFLINE && bContinue) { + nls.dwTimeout = (m_dwPingPeriod * 1000); DWORD dwSelectRet = CallService(MS_NETLIB_SELECT, 0, (LPARAM)&nls); if (SOCKET_ERROR == dwSelectRet) { if (m_iStatus != ID_STATUS_OFFLINE) { @@ -231,7 +232,8 @@ DWORD CMraProto::MraNetworkDispatcher() m_dwThreadWorkerLastPingTime = GetTickCount(); /* Server ping. */ if (m_dwNextPingSendTickTime <= m_dwThreadWorkerLastPingTime) { - m_dwNextPingSendTickTime = (m_dwThreadWorkerLastPingTime + (m_dwPingPeriod * 1000)); + nls.dwTimeout = (m_dwPingPeriod * 1000); + m_dwNextPingSendTickTime = (m_dwThreadWorkerLastPingTime + nls.dwTimeout); MraSendCMD(MRIM_CS_PING, NULL, 0); } { /* Remove old items from send queue. */ -- cgit v1.2.3