mirror of
https://github.com/monero-project/monero.git
synced 2025-07-26 03:45:22 -04:00
print limits when running limit commands with no arguments
It's more user friendly that an error message saying the command does not exist.
This commit is contained in:
parent
2dc1cd9ae6
commit
d8ee0a95c7
5 changed files with 60 additions and 3 deletions
|
@ -737,6 +737,15 @@ bool t_rpc_command_executor::print_status()
|
|||
return true;
|
||||
}
|
||||
|
||||
bool t_rpc_command_executor::get_limit()
|
||||
{
|
||||
int limit_down = epee::net_utils::connection_basic::get_rate_down_limit( );
|
||||
int limit_up = epee::net_utils::connection_basic::get_rate_up_limit( );
|
||||
std::cout << "limit-down is " << limit_down/1024 << " kB/s" << std::endl;
|
||||
std::cout << "limit-up is " << limit_up/1024 << " kB/s" << std::endl;
|
||||
return true;
|
||||
}
|
||||
|
||||
bool t_rpc_command_executor::set_limit(int limit)
|
||||
{
|
||||
epee::net_utils::connection_basic::set_rate_down_limit( limit );
|
||||
|
@ -746,6 +755,13 @@ bool t_rpc_command_executor::set_limit(int limit)
|
|||
return true;
|
||||
}
|
||||
|
||||
bool t_rpc_command_executor::get_limit_up()
|
||||
{
|
||||
int limit_up = epee::net_utils::connection_basic::get_rate_up_limit( );
|
||||
std::cout << "limit-up is " << limit_up/1024 << " kB/s" << std::endl;
|
||||
return true;
|
||||
}
|
||||
|
||||
bool t_rpc_command_executor::set_limit_up(int limit)
|
||||
{
|
||||
epee::net_utils::connection_basic::set_rate_up_limit( limit );
|
||||
|
@ -753,6 +769,13 @@ bool t_rpc_command_executor::set_limit_up(int limit)
|
|||
return true;
|
||||
}
|
||||
|
||||
bool t_rpc_command_executor::get_limit_down()
|
||||
{
|
||||
int limit_down = epee::net_utils::connection_basic::get_rate_down_limit( );
|
||||
std::cout << "limit-down is " << limit_down/1024 << " kB/s" << std::endl;
|
||||
return true;
|
||||
}
|
||||
|
||||
bool t_rpc_command_executor::set_limit_down(int limit)
|
||||
{
|
||||
epee::net_utils::connection_basic::set_rate_down_limit( limit );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue