mirror of
https://github.com/monero-project/monero.git
synced 2025-11-30 19:06:48 -05:00
Rename delete_connections to delete_out_connections
This rename is needed so that delete_in_connections can be added.
This commit is contained in:
parent
b927c0fc7a
commit
d609a2c164
3 changed files with 3 additions and 3 deletions
|
|
@ -118,7 +118,7 @@ namespace nodetool
|
|||
virtual uint64_t get_connections_count();
|
||||
size_t get_outgoing_connections_count();
|
||||
peerlist_manager& get_peerlist_manager(){return m_peerlist;}
|
||||
void delete_connections(size_t count);
|
||||
void delete_out_connections(size_t count);
|
||||
virtual bool block_host(const epee::net_utils::network_address &adress, time_t seconds = P2P_IP_BLOCKTIME);
|
||||
virtual bool unblock_host(const epee::net_utils::network_address &address);
|
||||
virtual std::map<std::string, time_t> get_blocked_hosts() { CRITICAL_REGION_LOCAL(m_blocked_hosts_lock); return m_blocked_hosts; }
|
||||
|
|
|
|||
|
|
@ -1787,7 +1787,7 @@ namespace nodetool
|
|||
}
|
||||
|
||||
template<class t_payload_net_handler>
|
||||
void node_server<t_payload_net_handler>::delete_connections(size_t count)
|
||||
void node_server<t_payload_net_handler>::delete_out_connections(size_t count)
|
||||
{
|
||||
m_net_server.get_config_object().del_out_connections(count);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue