diff options
author | Lee Clagett <code@leeclagett.com> | 2019-05-22 00:09:11 -0400 |
---|---|---|
committer | Lee Clagett <code@leeclagett.com> | 2019-05-21 16:17:34 +0000 |
commit | fafc5c3692fb1579bf6b2cfa75dec70d3f51ae4c (patch) | |
tree | 53682b9938afd27cd81d5d7cbf945e9c4bec7a99 /src/daemon/command_server.h | |
parent | Fix configuration bug; wallet2 --daemon-ssl-allow-any-cert now works. (diff) | |
download | monero-fafc5c3692fb1579bf6b2cfa75dec70d3f51ae4c.tar.xz |
Add ssl_options support to monerod's rpc mode.
Diffstat (limited to 'src/daemon/command_server.h')
-rw-r--r-- | src/daemon/command_server.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/daemon/command_server.h b/src/daemon/command_server.h index c8e77f551..da532223e 100644 --- a/src/daemon/command_server.h +++ b/src/daemon/command_server.h @@ -43,6 +43,7 @@ Passing RPC commands: #include "common/common_fwd.h" #include "console_handler.h" #include "daemon/command_parser_executor.h" +#include "net/net_fwd.h" namespace daemonize { @@ -57,6 +58,7 @@ public: uint32_t ip , uint16_t port , const boost::optional<tools::login>& login + , const epee::net_utils::ssl_options_t& ssl_options , bool is_rpc = true , cryptonote::core_rpc_server* rpc_server = NULL ); |