mirror of
https://github.com/monero-project/monero.git
synced 2025-08-08 15:32:14 -04:00
Merge pull request #9160
c50ade5
Daemon-specific proxy for the wallet-rpc. (0xFFFC0000)
This commit is contained in:
commit
72d87cd10a
5 changed files with 31 additions and 4 deletions
|
@ -2598,6 +2598,7 @@ namespace wallet_rpc
|
|||
std::string ssl_ca_file;
|
||||
std::vector<std::string> ssl_allowed_fingerprints;
|
||||
bool ssl_allow_any_cert;
|
||||
std::string proxy;
|
||||
|
||||
BEGIN_KV_SERIALIZE_MAP()
|
||||
KV_SERIALIZE(address)
|
||||
|
@ -2610,6 +2611,7 @@ namespace wallet_rpc
|
|||
KV_SERIALIZE(ssl_ca_file)
|
||||
KV_SERIALIZE(ssl_allowed_fingerprints)
|
||||
KV_SERIALIZE_OPT(ssl_allow_any_cert, false)
|
||||
KV_SERIALIZE_OPT(proxy, (std::string)"")
|
||||
END_KV_SERIALIZE_MAP()
|
||||
};
|
||||
typedef epee::misc_utils::struct_init<request_t> request;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue