diff options
author | Lee Clagett <code@leeclagett.com> | 2016-12-16 18:08:24 -0500 |
---|---|---|
committer | Lee Clagett <code@leeclagett.com> | 2016-12-16 23:59:46 -0500 |
commit | 427054c3d50198dff65b5e003165b1f564ebd26f (patch) | |
tree | 185a13198aa77320c1b5220497f27366ecbb3465 /src/wallet/wallet_rpc_server.h | |
parent | Merge pull request #1459 (diff) | |
download | monero-427054c3d50198dff65b5e003165b1f564ebd26f.tar.xz |
Enabled HTTP auth support for monero-wallet-rpc
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; }; } |