aboutsummaryrefslogtreecommitdiff
path: root/src/net.h
diff options
context:
space:
mode:
authorCory Fields <cory-nospam-@coryfields.com>2016-08-31 13:17:28 -0400
committerCory Fields <cory-nospam-@coryfields.com>2016-09-08 13:06:05 -0400
commit0103c5b90fa61b5d159a825fcb5a05ca31d0d1c3 (patch)
treece713e812247644bb48b2b95d3c99343bf95dbb2 /src/net.h
parente700cd0bc885340563df9e6b7a5b6c6603b8c984 (diff)
downloadbitcoin-0103c5b90fa61b5d159a825fcb5a05ca31d0d1c3.tar.xz
net: move MAX_FEELER_CONNECTIONS into connman
Diffstat (limited to 'src/net.h')
-rw-r--r--src/net.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/net.h b/src/net.h
index 97604ca56e..a48ee02c44 100644
--- a/src/net.h
+++ b/src/net.h
@@ -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;
};