|
|
|
@ -3155,6 +3155,9 @@ void static ProcessGetData(CNode* pfrom)
@@ -3155,6 +3155,9 @@ void static ProcessGetData(CNode* pfrom)
|
|
|
|
|
|
|
|
|
|
// Track requests for our stuff.
|
|
|
|
|
g_signals.Inventory(inv.hash); |
|
|
|
|
|
|
|
|
|
if (inv.type == MSG_BLOCK || inv.type == MSG_FILTERED_BLOCK) |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -3842,6 +3845,9 @@ bool ProcessMessages(CNode* pfrom)
@@ -3842,6 +3845,9 @@ bool ProcessMessages(CNode* pfrom)
|
|
|
|
|
if (!pfrom->vRecvGetData.empty()) |
|
|
|
|
ProcessGetData(pfrom); |
|
|
|
|
|
|
|
|
|
// this maintains the order of responses
|
|
|
|
|
if (!pfrom->vRecvGetData.empty()) return fOk; |
|
|
|
|
|
|
|
|
|
std::deque<CNetMessage>::iterator it = pfrom->vRecvMsg.begin(); |
|
|
|
|
while (!pfrom->fDisconnect && it != pfrom->vRecvMsg.end()) { |
|
|
|
|
// Don't bother if send buffer is too full to respond anyway
|
|
|
|
@ -3929,6 +3935,8 @@ bool ProcessMessages(CNode* pfrom)
@@ -3929,6 +3935,8 @@ bool ProcessMessages(CNode* pfrom)
|
|
|
|
|
|
|
|
|
|
if (!fRet) |
|
|
|
|
LogPrintf("ProcessMessage(%s, %u bytes) FAILED\n", strCommand.c_str(), nMessageSize); |
|
|
|
|
|
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// In case the connection got shut down, its receive buffer was wiped
|
|
|
|
|