mirror of
https://github.com/monero-project/monero.git
synced 2026-01-07 10:50:36 -08:00
rpc: in/out peers can now return the setting's value
This commit is contained in:
@@ -1465,13 +1465,14 @@ bool t_rpc_command_executor::get_limit_down()
|
||||
return true;
|
||||
}
|
||||
|
||||
bool t_rpc_command_executor::out_peers(uint64_t limit)
|
||||
bool t_rpc_command_executor::out_peers(bool set, uint32_t limit)
|
||||
{
|
||||
cryptonote::COMMAND_RPC_OUT_PEERS::request req;
|
||||
cryptonote::COMMAND_RPC_OUT_PEERS::response res;
|
||||
|
||||
epee::json_rpc::error error_resp;
|
||||
|
||||
req.set = set;
|
||||
req.out_peers = limit;
|
||||
|
||||
std::string fail_message = "Unsuccessful";
|
||||
@@ -1492,18 +1493,20 @@ bool t_rpc_command_executor::out_peers(uint64_t limit)
|
||||
}
|
||||
}
|
||||
|
||||
tools::msg_writer() << "Max number of out peers set to " << limit << std::endl;
|
||||
const std::string s = res.out_peers == (uint32_t)-1 ? "unlimited" : std::to_string(res.out_peers);
|
||||
tools::msg_writer() << "Max number of out peers set to " << s << std::endl;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool t_rpc_command_executor::in_peers(uint64_t limit)
|
||||
bool t_rpc_command_executor::in_peers(bool set, uint32_t limit)
|
||||
{
|
||||
cryptonote::COMMAND_RPC_IN_PEERS::request req;
|
||||
cryptonote::COMMAND_RPC_IN_PEERS::response res;
|
||||
|
||||
epee::json_rpc::error error_resp;
|
||||
|
||||
req.set = set;
|
||||
req.in_peers = limit;
|
||||
|
||||
std::string fail_message = "Unsuccessful";
|
||||
@@ -1524,7 +1527,8 @@ bool t_rpc_command_executor::in_peers(uint64_t limit)
|
||||
}
|
||||
}
|
||||
|
||||
tools::msg_writer() << "Max number of in peers set to " << limit << std::endl;
|
||||
const std::string s = res.in_peers == (uint32_t)-1 ? "unlimited" : std::to_string(res.in_peers);
|
||||
tools::msg_writer() << "Max number of in peers set to " << s << std::endl;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user