aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJeff Garzik <jgarzik@bitpay.com>2014-09-09 09:26:52 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2014-09-09 09:26:52 +0200
commit540ac4514dbe4e077917bad1750768218ef5f9cf (patch)
treece93352c2e7d7b3c7c3b3e255276b23096804705 /src
parentd4168c82bef0d86fd254a9d993906a09f5fd7fc0 (diff)
downloadbitcoin-540ac4514dbe4e077917bad1750768218ef5f9cf.tar.xz
Avoid returning many "inv" orphans
Diffstat (limited to 'src')
-rw-r--r--src/main.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 2e24eb950f..21a352f7ba 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -3639,6 +3639,11 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv,
// Track requests for our stuff
g_signals.Inventory(inv.hash);
+
+ if (pfrom->nSendSize > (SendBufferSize() * 2)) {
+ Misbehaving(pfrom->GetId(), 50);
+ return error("send buffer size() = %u", pfrom->nSendSize);
+ }
}
}