Rename delete_connections to delete_out_connections

This rename is needed so that delete_in_connections can be added.
This commit is contained in:
Erik de Castro Lopo
2018-01-20 11:57:02 +11:00
parent b927c0fc7a
commit d609a2c164
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -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; }