diff options
| author | Wladimir J. van der Laan <[email protected]> | 2018-11-05 13:44:53 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2018-11-05 13:45:41 +0100 |
| commit | dac2caa371a1c65faf34966c85dbafc30a0c640a (patch) | |
| tree | 86bc2303329410e2aa5869d8d7deb3a8c6d464eb /src/zmq/zmqabstractnotifier.cpp | |
| parent | Merge #14618: rpc: Make HTTP RPC debug logging more informative (diff) | |
| parent | ZMQ: add options to configure outbound message high water mark, aka SNDHWM (diff) | |
| download | discoin-dac2caa371a1c65faf34966c85dbafc30a0c640a.tar.xz discoin-dac2caa371a1c65faf34966c85dbafc30a0c640a.zip | |
Merge #14060: ZMQ: add options to configure outbound message high water mark, aka SNDHWM
a4edb168b635b6f5c36324e44961cd42cf9bbbaa ZMQ: add options to configure outbound message high water mark, aka SNDHWM (mruddy)
Pull request description:
ZMQ: add options to configure outbound message high water mark, aka SNDHWM
This is my attempt at https://github.com/bitcoin/bitcoin/pull/13315
Tree-SHA512: a4cc3bcf179776899261a97c8c4f31f35d1d8950fd71a09a79c5c064879b38e600b26824c89c4091d941502ed5b0255390882f7d44baf9e6dc49d685a86e8edb
Diffstat (limited to 'src/zmq/zmqabstractnotifier.cpp')
| -rw-r--r-- | src/zmq/zmqabstractnotifier.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/zmq/zmqabstractnotifier.cpp b/src/zmq/zmqabstractnotifier.cpp index 82e5ee5cc..6a9661e3e 100644 --- a/src/zmq/zmqabstractnotifier.cpp +++ b/src/zmq/zmqabstractnotifier.cpp @@ -5,6 +5,7 @@ #include <zmq/zmqabstractnotifier.h> #include <util/system.h> +const int CZMQAbstractNotifier::DEFAULT_ZMQ_SNDHWM; CZMQAbstractNotifier::~CZMQAbstractNotifier() { |