diff options
author | Riccardo Spagni <ric@spagni.net> | 2016-12-19 22:16:22 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2016-12-19 22:16:22 +0200 |
commit | 5fcf7c1c187d06eb2800e40c397387950ce3f6ba (patch) | |
tree | 185a13198aa77320c1b5220497f27366ecbb3465 /src/wallet/wallet_rpc_server.h | |
parent | Merge pull request #1459 (diff) | |
parent | Enabled HTTP auth support for monero-wallet-rpc (diff) | |
download | monero-5fcf7c1c187d06eb2800e40c397387950ce3f6ba.tar.xz |
Merge pull request #1464
427054c3 Enabled HTTP auth support for monero-wallet-rpc (Lee Clagett)
Diffstat (limited to '')
-rw-r--r-- | src/wallet/wallet_rpc_server.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wallet/wallet_rpc_server.h b/src/wallet/wallet_rpc_server.h index 96ca1af04..8701d38cd 100644 --- a/src/wallet/wallet_rpc_server.h +++ b/src/wallet/wallet_rpc_server.h @@ -32,6 +32,7 @@ #include <boost/program_options/options_description.hpp> #include <boost/program_options/variables_map.hpp> +#include <string> #include "net/http_server_impl_base.h" #include "wallet_rpc_server_commands_defs.h" #include "wallet2.h" @@ -48,6 +49,7 @@ namespace tools static const char* tr(const char* str); wallet_rpc_server(wallet2& cr); + ~wallet_rpc_server(); bool init(const boost::program_options::variables_map& vm); bool run(); @@ -118,6 +120,7 @@ namespace tools bool on_query_key(const wallet_rpc::COMMAND_RPC_QUERY_KEY::request& req, wallet_rpc::COMMAND_RPC_QUERY_KEY::response& res, epee::json_rpc::error& er); wallet2& m_wallet; + std::string rpc_login_filename; std::atomic<bool> m_stop; }; } |