mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-06-28 18:01:27 +02:00
net, net_processing: move NetEventsInterface method docs to net.h
This commit is contained in:
parent
9158d6f341
commit
0d246a59b6
23
src/net.h
23
src/net.h
@ -769,11 +769,30 @@ public:
|
|||||||
class NetEventsInterface
|
class NetEventsInterface
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
virtual bool ProcessMessages(CNode* pnode, std::atomic<bool>& interrupt) = 0;
|
/** Initialize a peer (setup state, queue any initial messages) */
|
||||||
virtual bool SendMessages(CNode* pnode) EXCLUSIVE_LOCKS_REQUIRED(pnode->cs_sendProcessing) = 0;
|
|
||||||
virtual void InitializeNode(CNode* pnode) = 0;
|
virtual void InitializeNode(CNode* pnode) = 0;
|
||||||
|
|
||||||
|
/** Handle removal of a peer (clear state) */
|
||||||
virtual void FinalizeNode(const CNode& node, bool& update_connection_time) = 0;
|
virtual void FinalizeNode(const CNode& node, bool& update_connection_time) = 0;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Process protocol messages received from a given node
|
||||||
|
*
|
||||||
|
* @param[in] pnode The node which we have received messages from.
|
||||||
|
* @param[in] interrupt Interrupt condition for processing threads
|
||||||
|
* @return True if there is more work to be done
|
||||||
|
*/
|
||||||
|
virtual bool ProcessMessages(CNode* pnode, std::atomic<bool>& interrupt) = 0;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Send queued protocol messages to a given node.
|
||||||
|
*
|
||||||
|
* @param[in] pnode The node which we are sending messages to.
|
||||||
|
* @return True if there is more work to be done
|
||||||
|
*/
|
||||||
|
virtual bool SendMessages(CNode* pnode) EXCLUSIVE_LOCKS_REQUIRED(pnode->cs_sendProcessing) = 0;
|
||||||
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
/**
|
/**
|
||||||
* Protected destructor so that instances can only be deleted by derived classes.
|
* Protected destructor so that instances can only be deleted by derived classes.
|
||||||
|
@ -118,23 +118,9 @@ public:
|
|||||||
*/
|
*/
|
||||||
void NewPoWValidBlock(const CBlockIndex *pindex, const std::shared_ptr<const CBlock>& pblock) override;
|
void NewPoWValidBlock(const CBlockIndex *pindex, const std::shared_ptr<const CBlock>& pblock) override;
|
||||||
|
|
||||||
/** Initialize a peer by adding it to mapNodeState and pushing a message requesting its version */
|
|
||||||
void InitializeNode(CNode* pnode) override;
|
void InitializeNode(CNode* pnode) override;
|
||||||
/** Handle removal of a peer by updating various state and removing it from mapNodeState */
|
|
||||||
void FinalizeNode(const CNode& node, bool& fUpdateConnectionTime) override;
|
void FinalizeNode(const CNode& node, bool& fUpdateConnectionTime) override;
|
||||||
/**
|
|
||||||
* Process protocol messages received from a given node
|
|
||||||
*
|
|
||||||
* @param[in] pfrom The node which we have received messages from.
|
|
||||||
* @param[in] interrupt Interrupt condition for processing threads
|
|
||||||
*/
|
|
||||||
bool ProcessMessages(CNode* pfrom, std::atomic<bool>& interrupt) override;
|
bool ProcessMessages(CNode* pfrom, std::atomic<bool>& interrupt) override;
|
||||||
/**
|
|
||||||
* Send queued protocol messages to be sent to a give node.
|
|
||||||
*
|
|
||||||
* @param[in] pto The node which we are sending messages to.
|
|
||||||
* @return True if there is more work to be done
|
|
||||||
*/
|
|
||||||
bool SendMessages(CNode* pto) override EXCLUSIVE_LOCKS_REQUIRED(pto->cs_sendProcessing);
|
bool SendMessages(CNode* pto) override EXCLUSIVE_LOCKS_REQUIRED(pto->cs_sendProcessing);
|
||||||
|
|
||||||
/** Consider evicting an outbound peer based on the amount of time they've been behind our tip */
|
/** Consider evicting an outbound peer based on the amount of time they've been behind our tip */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user