net: move vNodesDisconnected into CConnman
This commit is contained in:
parent
fa2f8bc47f
commit
98591c5027
2 changed files with 1 additions and 2 deletions
|
@ -820,8 +820,6 @@ size_t SocketSendData(CNode *pnode)
|
|||
return nSentSize;
|
||||
}
|
||||
|
||||
static std::list<CNode*> vNodesDisconnected;
|
||||
|
||||
struct NodeEvictionCandidate
|
||||
{
|
||||
NodeId id;
|
||||
|
|
|
@ -292,6 +292,7 @@ private:
|
|||
std::vector<std::string> vAddedNodes;
|
||||
CCriticalSection cs_vAddedNodes;
|
||||
std::vector<CNode*> vNodes;
|
||||
std::list<CNode*> vNodesDisconnected;
|
||||
mutable CCriticalSection cs_vNodes;
|
||||
std::atomic<NodeId> nLastNodeId;
|
||||
boost::condition_variable messageHandlerCondition;
|
||||
|
|
Loading…
Reference in a new issue