diff options
author | Cory Fields <cory-nospam-@coryfields.com> | 2017-07-06 13:53:52 -0400 |
---|---|---|
committer | Cory Fields <cory-nospam-@coryfields.com> | 2017-09-06 19:03:39 -0400 |
commit | 28f11e9406b185dc87144f1f29af0d93eb115b4e (patch) | |
tree | 27f8a55fc1e1ee47a682f6944b69190824c6dbcc /src/net_processing.h | |
parent | bcc8a620eae9cd8fe95f0a02f17183c4a132e5a2 (diff) |
net: pass CConnman via pointer rather than reference
There are a few too many edge-cases here to make this a scripted diff.
The following commits will move a few functions into PeerLogicValidation, where
the local connman instance can be used. This change prepares for that usage.
Diffstat (limited to 'src/net_processing.h')
-rw-r--r-- | src/net_processing.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net_processing.h b/src/net_processing.h index f4a43980a5..461dc9a90d 100644 --- a/src/net_processing.h +++ b/src/net_processing.h @@ -53,7 +53,7 @@ bool GetNodeStateStats(NodeId nodeid, CNodeStateStats &stats); void Misbehaving(NodeId nodeid, int howmuch); /** Process protocol messages received from a given node */ -bool ProcessMessages(CNode* pfrom, CConnman& connman, const std::atomic<bool>& interrupt); +bool ProcessMessages(CNode* pfrom, CConnman* connman, const std::atomic<bool>& interrupt); /** * Send queued protocol messages to be sent to a give node. * @@ -62,6 +62,6 @@ bool ProcessMessages(CNode* pfrom, CConnman& connman, const std::atomic<bool>& i * @param[in] interrupt Interrupt condition for processing threads * @return True if there is more work to be done */ -bool SendMessages(CNode* pto, CConnman& connman, const std::atomic<bool>& interrupt); +bool SendMessages(CNode* pto, CConnman* connman, const std::atomic<bool>& interrupt); #endif // BITCOIN_NET_PROCESSING_H |