Merge pull request #2587
cba34494
rpc: out_peers now works again (moneromooo-monero)
This commit is contained in:
commit
3eac7ab94f
|
@ -1596,20 +1596,12 @@ namespace cryptonote
|
|||
//------------------------------------------------------------------------------------------------------------------------------
|
||||
bool core_rpc_server::on_out_peers(const COMMAND_RPC_OUT_PEERS::request& req, COMMAND_RPC_OUT_PEERS::response& res)
|
||||
{
|
||||
// TODO
|
||||
/*if (m_p2p.get_outgoing_connections_count() > req.out_peers)
|
||||
{
|
||||
size_t n_connections = m_p2p.get_outgoing_connections_count();
|
||||
size_t n_delete = (n_connections > req.out_peers) ? n_connections - req.out_peers : 0;
|
||||
m_p2p.m_config.m_net_config.connections_count = req.out_peers;
|
||||
if (m_p2p.get_outgoing_connections_count() > req.out_peers)
|
||||
{
|
||||
int count = m_p2p.get_outgoing_connections_count() - req.out_peers;
|
||||
m_p2p.delete_connections(count);
|
||||
}
|
||||
}
|
||||
|
||||
else
|
||||
m_p2p.m_config.m_net_config.connections_count = req.out_peers;
|
||||
*/
|
||||
if (n_delete)
|
||||
m_p2p.delete_connections(n_delete);
|
||||
res.status = CORE_RPC_STATUS_OK;
|
||||
return true;
|
||||
}
|
||||
//------------------------------------------------------------------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in New Issue