diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-09-09 09:18:05 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-09-09 09:19:15 +0200 |
commit | d4168c82bef0d86fd254a9d993906a09f5fd7fc0 (patch) | |
tree | ebcbbf5dc4117af40c5c52fd74526865d093754c /src/net.cpp | |
parent | 8bc0a0173e885a5b60e12d3769604236967c262e (diff) |
Limit CNode::mapAskFor
Tighten resource constraints on CNode.
Diffstat (limited to 'src/net.cpp')
-rw-r--r-- | src/net.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/net.cpp b/src/net.cpp index 2546826f9a..6b7e62d7cb 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -2106,6 +2106,8 @@ CNode::~CNode() void CNode::AskFor(const CInv& inv) { + if (mapAskFor.size() > MAPASKFOR_MAX_SZ) + return; // We're using mapAskFor as a priority queue, // the key is the earliest time the request can be sent int64_t nRequestTime; |