diff options
author | Cory Fields <cory-nospam-@coryfields.com> | 2016-08-31 13:17:28 -0400 |
---|---|---|
committer | Cory Fields <cory-nospam-@coryfields.com> | 2016-09-08 13:06:05 -0400 |
commit | 0103c5b90fa61b5d159a825fcb5a05ca31d0d1c3 (patch) | |
tree | ce713e812247644bb48b2b95d3c99343bf95dbb2 /src/net.h | |
parent | e700cd0bc885340563df9e6b7a5b6c6603b8c984 (diff) |
net: move MAX_FEELER_CONNECTIONS into connman
Diffstat (limited to 'src/net.h')
-rw-r--r-- | src/net.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -115,6 +115,7 @@ public: ServiceFlags nRelevantServices = NODE_NONE; int nMaxConnections = 0; int nMaxOutbound = 0; + int nMaxFeeler = 0; int nBestHeight = 0; CClientUIInterface* uiInterface = nullptr; unsigned int nSendBufferMaxSize = 0; @@ -384,6 +385,7 @@ private: CSemaphore *semOutbound; int nMaxConnections; int nMaxOutbound; + int nMaxFeeler; std::atomic<int> nBestHeight; CClientUIInterface* clientInterface; }; |