net: Add a simple function for waking the message handler
This may be used publicly in the future
This commit is contained in:
parent
f5c36d19b6
commit
ef7b5ecbb7
2 changed files with 8 additions and 4 deletions
10
src/net.cpp
10
src/net.cpp
|
@ -1239,8 +1239,8 @@ void CConnman::ThreadSocketHandler()
|
|||
if (!pnode->ReceiveMsgBytes(pchBuf, nBytes, notify))
|
||||
pnode->CloseSocketDisconnect();
|
||||
RecordBytesRecv(nBytes);
|
||||
if(notify)
|
||||
condMsgProc.notify_one();
|
||||
if (notify)
|
||||
WakeMessageHandler();
|
||||
}
|
||||
else if (nBytes == 0)
|
||||
{
|
||||
|
@ -1315,8 +1315,10 @@ void CConnman::ThreadSocketHandler()
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
void CConnman::WakeMessageHandler()
|
||||
{
|
||||
condMsgProc.notify_one();
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -341,6 +341,8 @@ private:
|
|||
void ThreadSocketHandler();
|
||||
void ThreadDNSAddressSeed();
|
||||
|
||||
void WakeMessageHandler();
|
||||
|
||||
uint64_t CalculateKeyedNetGroup(const CAddress& ad);
|
||||
|
||||
CNode* FindNode(const CNetAddr& ip);
|
||||
|
|
Loading…
Reference in a new issue