diff options
author | Cory Fields <cory-nospam-@coryfields.com> | 2016-12-31 02:05:05 -0500 |
---|---|---|
committer | Cory Fields <cory-nospam-@coryfields.com> | 2017-01-04 09:29:14 -0500 |
commit | 53ad9a133a53feb35e31698720cec69c14f56dc1 (patch) | |
tree | 4bd8689feeced78e4a8166a7553dda1f361b7662 /src/net.cpp | |
parent | 5bc3b6cede8dabdf3f4f27ddb03723cbb7cde51a (diff) |
net: fix typo causing the wrong receive buffer size
Surprisingly this hasn't been causing me any issues while testing, probably
because it requires lots of large blocks to be flying around.
Send/Recv corks need tests!
Diffstat (limited to 'src/net.cpp')
-rw-r--r-- | src/net.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net.cpp b/src/net.cpp index bf2beb7740..e7c7cf011c 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -2102,7 +2102,7 @@ bool CConnman::Start(CScheduler& scheduler, std::string& strNodeError, Options c nMaxFeeler = connOptions.nMaxFeeler; nSendBufferMaxSize = connOptions.nSendBufferMaxSize; - nReceiveFloodSize = connOptions.nSendBufferMaxSize; + nReceiveFloodSize = connOptions.nReceiveFloodSize; nMaxOutboundLimit = connOptions.nMaxOutboundLimit; nMaxOutboundTimeframe = connOptions.nMaxOutboundTimeframe; |