diff options
| author | Lee Clagett <code@leeclagett.com> | 2017-02-05 17:48:03 -0500 |
|---|---|---|
| committer | Lee Clagett <code@leeclagett.com> | 2017-02-06 01:15:41 -0500 |
| commit | ce7fcbb4aea884bb4bf433cf419ffa267f859c87 (patch) | |
| tree | e8fb644b62006d78f801d739fbebad50f2c2409d /src/daemon/command_server.h | |
| parent | e56bf442c394bc5977cb7931d78b4cfca5e3a0b2 (diff) | |
| download | monzero-core-ce7fcbb4aea884bb4bf433cf419ffa267f859c87.tar.gz monzero-core-ce7fcbb4aea884bb4bf433cf419ffa267f859c87.tar.xz monzero-core-ce7fcbb4aea884bb4bf433cf419ffa267f859c87.zip | |
Add server auth to monerod, and client auth to wallet-cli and wallet-rpc
Diffstat (limited to 'src/daemon/command_server.h')
| -rw-r--r-- | src/daemon/command_server.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/daemon/command_server.h b/src/daemon/command_server.h index fb1702aae..9ecf06b9d 100644 --- a/src/daemon/command_server.h +++ b/src/daemon/command_server.h @@ -39,6 +39,8 @@ Passing RPC commands: #pragma once +#include <boost/optional/optional_fwd.hpp> +#include "common/common_fwd.h" #include "console_handler.h" #include "daemon/command_parser_executor.h" @@ -54,7 +56,7 @@ public: t_command_server( uint32_t ip , uint16_t port - , const std::string &user_agent + , const boost::optional<tools::login>& login , bool is_rpc = true , cryptonote::core_rpc_server* rpc_server = NULL ); |
