diff options
author | Riccardo Spagni <ric@spagni.net> | 2017-09-18 13:08:16 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2017-09-18 13:08:16 +0200 |
commit | 591e53445b2643af1e9a5266ffa5324cad758255 (patch) | |
tree | b10169969aab78bdf6868f9c48176a8804182ee9 /src/daemon/daemon.h | |
parent | Merge pull request #2378 (diff) | |
parent | Fix various oversights/bugs in ZMQ RPC server code (diff) | |
download | monero-591e53445b2643af1e9a5266ffa5324cad758255.tar.xz |
Merge pull request #2044
0299cb77 Fix various oversights/bugs in ZMQ RPC server code (Thomas Winget)
77986023 json serialization for rpc-relevant monero types (Thomas Winget)
5c1e08fe Refactor some things into more composable (smaller) functions (Thomas Winget)
9ac2ad07 DRY refactoring (Thomas Winget)
Diffstat (limited to 'src/daemon/daemon.h')
-rw-r--r-- | src/daemon/daemon.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/daemon/daemon.h b/src/daemon/daemon.h index 2b9f18669..8c7547f62 100644 --- a/src/daemon/daemon.h +++ b/src/daemon/daemon.h @@ -43,6 +43,8 @@ private: void stop_p2p(); private: std::unique_ptr<t_internals> mp_internals; + std::string zmq_rpc_bind_address; + std::string zmq_rpc_bind_port; public: t_daemon( boost::program_options::variables_map const & vm |