Merge #1186: Added logging of sent inv messages
This commit is contained in:
parent
8126e92441
commit
786f17e1f2
@ -6674,6 +6674,7 @@ bool SendMessages(CNode* pto)
|
|||||||
|
|
||||||
if (fTrickleWait)
|
if (fTrickleWait)
|
||||||
{
|
{
|
||||||
|
LogPrint("net", "SendMessages -- queued inv(vInvWait): %s index=%d peer=%d\n", inv.ToString(), vInvWait.size(), pto->id);
|
||||||
vInvWait.push_back(inv);
|
vInvWait.push_back(inv);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@ -6681,17 +6682,21 @@ bool SendMessages(CNode* pto)
|
|||||||
|
|
||||||
pto->filterInventoryKnown.insert(inv.hash);
|
pto->filterInventoryKnown.insert(inv.hash);
|
||||||
|
|
||||||
|
LogPrint("net", "SendMessages -- queued inv: %s index=%d peer=%d\n", inv.ToString(), vInv.size(), pto->id);
|
||||||
vInv.push_back(inv);
|
vInv.push_back(inv);
|
||||||
if (vInv.size() >= 1000)
|
if (vInv.size() >= 1000)
|
||||||
{
|
{
|
||||||
|
LogPrint("net", "SendMessages -- pushing inv's: count=%d peer=%d\n", vInv.size(), pto->id);
|
||||||
pto->PushMessage(NetMsgType::INV, vInv);
|
pto->PushMessage(NetMsgType::INV, vInv);
|
||||||
vInv.clear();
|
vInv.clear();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
pto->vInventoryToSend = vInvWait;
|
pto->vInventoryToSend = vInvWait;
|
||||||
}
|
}
|
||||||
if (!vInv.empty())
|
if (!vInv.empty()) {
|
||||||
|
LogPrint("net", "SendMessages -- pushing tailing inv's: count=%d peer=%d\n", vInv.size(), pto->id);
|
||||||
pto->PushMessage(NetMsgType::INV, vInv);
|
pto->PushMessage(NetMsgType::INV, vInv);
|
||||||
|
}
|
||||||
|
|
||||||
// Detect whether we're stalling
|
// Detect whether we're stalling
|
||||||
nNow = GetTimeMicros();
|
nNow = GetTimeMicros();
|
||||||
|
Loading…
Reference in New Issue
Block a user