mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-06-27 17:31:40 +02:00
[net] Move RecordBytesSent() call out of cs_vSend lock
This commit is contained in:
parent
02cf20b9f5
commit
673254515a
14
src/net.cpp
14
src/net.cpp
@ -1512,16 +1512,10 @@ void CConnman::SocketHandler()
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
// Send
|
||||
//
|
||||
if (sendSet)
|
||||
{
|
||||
LOCK(pnode->cs_vSend);
|
||||
size_t nBytes = SocketSendData(pnode);
|
||||
if (nBytes) {
|
||||
RecordBytesSent(nBytes);
|
||||
}
|
||||
if (sendSet) {
|
||||
// Send data
|
||||
size_t bytes_sent = WITH_LOCK(pnode->cs_vSend, return SocketSendData(pnode));
|
||||
if (bytes_sent) RecordBytesSent(bytes_sent);
|
||||
}
|
||||
|
||||
InactivityCheck(pnode);
|
||||
|
Loading…
x
Reference in New Issue
Block a user