2020-04-04 07:30:51 +08:00
|
|
|
// Copyright (c) 2020 The Bitcoin Core developers
|
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
#ifndef BITCOIN_TEST_UTIL_NET_H
|
|
|
|
#define BITCOIN_TEST_UTIL_NET_H
|
|
|
|
|
|
|
|
#include <net.h>
|
|
|
|
|
|
|
|
struct ConnmanTestMsg : public CConnman {
|
|
|
|
using CConnman::CConnman;
|
|
|
|
void AddTestNode(CNode& node)
|
|
|
|
{
|
|
|
|
LOCK(cs_vNodes);
|
|
|
|
vNodes.push_back(&node);
|
|
|
|
}
|
|
|
|
void ClearTestNodes()
|
|
|
|
{
|
|
|
|
LOCK(cs_vNodes);
|
|
|
|
for (CNode* node : vNodes) {
|
|
|
|
delete node;
|
|
|
|
}
|
|
|
|
vNodes.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProcessMessagesOnce(CNode& node) { m_msgproc->ProcessMessages(&node, flagInterruptMsgProc); }
|
|
|
|
|
2020-11-20 10:16:10 +01:00
|
|
|
void NodeReceiveMsgBytes(CNode& node, Span<const uint8_t> msg_bytes, bool& complete) const;
|
2020-04-04 07:30:51 +08:00
|
|
|
|
|
|
|
bool ReceiveMsgFrom(CNode& node, CSerializedNetMsg& ser_msg) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // BITCOIN_TEST_UTIL_NET_H
|