diff options
author | Matt Corallo <git@bluematt.me> | 2017-02-06 12:08:31 -0500 |
---|---|---|
committer | Matt Corallo <git@bluematt.me> | 2017-02-10 11:32:41 -0500 |
commit | 22b4966a29501c4f3f2e970ac5008fbd91e665a9 (patch) | |
tree | 2beb02b98598c74d44f4471bf157405804b7c321 /src/net.h | |
parent | 0f3187261519c7568ef4211ce12b9740a3c1200f (diff) |
Move [clean|str]SubVer writes/copyStats into a lock
Diffstat (limited to 'src/net.h')
-rw-r--r-- | src/net.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -598,6 +598,7 @@ public: // store the sanitized version in cleanSubVer. The original should be used when dealing with // the network or wire types and the cleaned string used when displayed or logged. std::string strSubVer, cleanSubVer; + CCriticalSection cs_SubVer; // used for both cleanSubVer and strSubVer bool fWhitelisted; // This peer can bypass DoS banning. bool fFeeler; // If true this node is being used as a short lived feeler. bool fOneShot; |