diff options
| author | Riccardo Spagni <ric@spagni.net> | 2017-02-11 00:35:25 +0200 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2017-02-11 00:35:25 +0200 |
| commit | eacf2124b6822d088199179b18d4587404408e0f (patch) | |
| tree | 48982250b525de443794c218d5386df03e728965 /src/daemon/command_parser_executor.cpp | |
| parent | 92969600811484c46edab4a85576265a8737e092 (diff) | |
| parent | ce7fcbb4aea884bb4bf433cf419ffa267f859c87 (diff) | |
| download | monzero-core-eacf2124b6822d088199179b18d4587404408e0f.tar.gz monzero-core-eacf2124b6822d088199179b18d4587404408e0f.tar.xz monzero-core-eacf2124b6822d088199179b18d4587404408e0f.zip | |
Merge pull request #1689
ce7fcbb4 Add server auth to monerod, and client auth to wallet-cli and wallet-rpc (Lee Clagett)
Diffstat (limited to 'src/daemon/command_parser_executor.cpp')
| -rw-r--r-- | src/daemon/command_parser_executor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/daemon/command_parser_executor.cpp b/src/daemon/command_parser_executor.cpp index 27f9d0fd7..fd73654ac 100644 --- a/src/daemon/command_parser_executor.cpp +++ b/src/daemon/command_parser_executor.cpp @@ -37,11 +37,11 @@ namespace daemonize { t_command_parser_executor::t_command_parser_executor( uint32_t ip , uint16_t port - , const std::string &user_agent + , const boost::optional<tools::login>& login , bool is_rpc , cryptonote::core_rpc_server* rpc_server ) - : m_executor(ip, port, user_agent, is_rpc, rpc_server) + : m_executor(ip, port, login, is_rpc, rpc_server) {} bool t_command_parser_executor::print_peer_list(const std::vector<std::string>& args) |
