Merge pull request #5942

fc72020 don't trickle for whitelisted nodes (Ruben de Vries)
This commit is contained in:
Wladimir J. van der Laan
2015-03-26 08:32:53 +01:00
2 changed files with 7 additions and 2 deletions

View File

@@ -167,7 +167,12 @@ bool LoadBlockIndex();
void UnloadBlockIndex();
/** Process protocol messages received from a given node */
bool ProcessMessages(CNode* pfrom);
/** Send queued protocol messages to be sent to a give node */
/**
* Send queued protocol messages to be sent to a give node.
*
* @param[in] pto The node which we are sending messages to.
* @param[in] fSendTrickle When true send the trickled data, otherwise trickle the data until true.
*/
bool SendMessages(CNode* pto, bool fSendTrickle);
/** Run an instance of the script checking thread */
void ThreadScriptCheck();