Merge #9561: Wake message handling thread when we receive a new block
241d893
Wake message handling thread when we receive a new block (Matt Corallo)f13914a
Make WakeMessageHandler public (Matt Corallo)
This commit is contained in:
commit
6696b4635c
2 changed files with 3 additions and 2 deletions
|
@ -328,6 +328,8 @@ public:
|
||||||
CSipHasher GetDeterministicRandomizer(uint64_t id);
|
CSipHasher GetDeterministicRandomizer(uint64_t id);
|
||||||
|
|
||||||
unsigned int GetReceiveFloodSize() const;
|
unsigned int GetReceiveFloodSize() const;
|
||||||
|
|
||||||
|
void WakeMessageHandler();
|
||||||
private:
|
private:
|
||||||
struct ListenSocket {
|
struct ListenSocket {
|
||||||
SOCKET socket;
|
SOCKET socket;
|
||||||
|
@ -344,8 +346,6 @@ private:
|
||||||
void ThreadSocketHandler();
|
void ThreadSocketHandler();
|
||||||
void ThreadDNSAddressSeed();
|
void ThreadDNSAddressSeed();
|
||||||
|
|
||||||
void WakeMessageHandler();
|
|
||||||
|
|
||||||
uint64_t CalculateKeyedNetGroup(const CAddress& ad);
|
uint64_t CalculateKeyedNetGroup(const CAddress& ad);
|
||||||
|
|
||||||
CNode* FindNode(const CNetAddr& ip);
|
CNode* FindNode(const CNetAddr& ip);
|
||||||
|
|
|
@ -827,6 +827,7 @@ void PeerLogicValidation::UpdatedBlockTip(const CBlockIndex *pindexNew, const CB
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
connman->WakeMessageHandler();
|
||||||
}
|
}
|
||||||
|
|
||||||
nTimeBestReceived = GetTime();
|
nTimeBestReceived = GetTime();
|
||||||
|
|
Loading…
Reference in a new issue