diff options
| author | Wladimir J. van der Laan <[email protected]> | 2017-01-04 12:20:43 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2017-01-04 12:21:53 +0100 |
| commit | d9ae1cefa081c7ef978fab0b288475692678af72 (patch) | |
| tree | aaafc90d4a0ef9a6ac14f6787a4d8852705e095f /src/net_processing.h | |
| parent | Merge #9450: Increment MIT licence copyright header year on files modified in... (diff) | |
| parent | net: misc header cleanups (diff) | |
| download | discoin-d9ae1cefa081c7ef978fab0b288475692678af72.tar.xz discoin-d9ae1cefa081c7ef978fab0b288475692678af72.zip | |
Merge #9289: net: drop boost::thread_group
67ee4ec net: misc header cleanups (Cory Fields)
8b3159e net: make proxy receives interruptible (Cory Fields)
5cb0fce net: remove thread_interrupted catch (Cory Fields)
d3d7056 net: make net processing interruptible (Cory Fields)
0985052 net: make net interruptible (Cory Fields)
799df91 net: add CThreadInterrupt and InterruptibleSleep (Cory Fields)
7325b15 net: a few small cleanups before replacing boost threads (Cory Fields)
Diffstat (limited to 'src/net_processing.h')
| -rw-r--r-- | src/net_processing.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/net_processing.h b/src/net_processing.h index dc250ebab..230d805bd 100644 --- a/src/net_processing.h +++ b/src/net_processing.h @@ -39,13 +39,14 @@ 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); +bool ProcessMessages(CNode* pfrom, CConnman& connman, std::atomic<bool>& interrupt); /** * Send queued protocol messages to be sent to a give node. * * @param[in] pto The node which we are sending messages to. * @param[in] connman The connection manager for that node. + * @param[in] interrupt Interrupt condition for processing threads */ -bool SendMessages(CNode* pto, CConnman& connman); +bool SendMessages(CNode* pto, CConnman& connman, std::atomic<bool>& interrupt); #endif // BITCOIN_NET_PROCESSING_H |