aboutsummaryrefslogtreecommitdiff
path: root/src/net.h
diff options
context:
space:
mode:
authorCory Fields <cory-nospam-@coryfields.com>2016-05-27 00:00:02 -0400
committerCory Fields <cory-nospam-@coryfields.com>2016-09-08 13:06:00 -0400
commitfa2f8bc47fa17deccb281b750ff6c48402c5b1ce (patch)
tree1d46e25e4ceb8401d6b373f40fea839de2980fa9 /src/net.h
parenta19553b992f40b9f98e6e0be4cd529a89746ef50 (diff)
downloadbitcoin-fa2f8bc47fa17deccb281b750ff6c48402c5b1ce.tar.xz
net: add nSendBufferMaxSize/nReceiveFloodSize to CConnection::Options
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 8067ee68a7..a50066da9a 100644
--- a/src/net.h
+++ b/src/net.h
@@ -117,6 +117,8 @@ public:
int nMaxOutbound = 0;
int nBestHeight = 0;
CClientUIInterface* uiInterface = nullptr;
+ unsigned int nSendBufferMaxSize = 0;
+ unsigned int nReceiveFloodSize = 0;
};
CConnman();
~CConnman();