diff options
| author | Alistair Buxton <[email protected]> | 2012-03-18 03:03:24 +0000 |
|---|---|---|
| committer | Alistair Buxton <[email protected]> | 2012-03-18 03:03:24 +0000 |
| commit | bb13d056ea332030a3b960bf2756a36de77e05b8 (patch) | |
| tree | f7557336fd4e2ccb0d6448609feef33ab02e7d68 /src/net.cpp | |
| parent | Merge pull request #942 from Diapolo/master (diff) | |
| download | discoin-bb13d056ea332030a3b960bf2756a36de77e05b8.tar.xz discoin-bb13d056ea332030a3b960bf2756a36de77e05b8.zip | |
When disconnecting a node, clear the received buffer so that we do
not process any already received messages.
The primary reason to do this is if a node spams hundreds of messages
and we ban them, we don't want to continue processing the rest of it.
Diffstat (limited to 'src/net.cpp')
| -rw-r--r-- | src/net.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/net.cpp b/src/net.cpp index b22300e82..94ef7e7b3 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -559,6 +559,7 @@ void CNode::CloseSocketDisconnect() printf("disconnecting node %s\n", addr.ToString().c_str()); closesocket(hSocket); hSocket = INVALID_SOCKET; + vRecv.clear(); } } |