diff options
author | Riccardo Spagni <ric@spagni.net> | 2016-11-11 12:34:43 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2016-11-11 12:34:43 +0200 |
commit | 5f568533aab82e1febffe634da0e4013b19e7037 (patch) | |
tree | e3a15ecc15ee4275d22f54d70c7dafc3c138afde /src/daemon/rpc_command_executor.cpp | |
parent | Merge pull request #1312 (diff) | |
parent | add lightweight block propagation ("fluffy blocks") (diff) | |
download | monero-5f568533aab82e1febffe634da0e4013b19e7037.tar.xz |
Merge pull request #1263
d61bd81 add lightweight block propagation ("fluffy blocks") (Dion Ahmetaj)
Diffstat (limited to 'src/daemon/rpc_command_executor.cpp')
-rw-r--r-- | src/daemon/rpc_command_executor.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/daemon/rpc_command_executor.cpp b/src/daemon/rpc_command_executor.cpp index 7d50ae76b..65b42cc47 100644 --- a/src/daemon/rpc_command_executor.cpp +++ b/src/daemon/rpc_command_executor.cpp @@ -404,6 +404,7 @@ bool t_rpc_command_executor::print_connections() { tools::msg_writer() << std::setw(30) << std::left << "Remote Host" << std::setw(20) << "Peer id" + << std::setw(20) << "Support Flags" << std::setw(30) << "Recv/Sent (inactive,sec)" << std::setw(25) << "State" << std::setw(20) << "Livetime(sec)" @@ -422,6 +423,7 @@ bool t_rpc_command_executor::print_connections() { //<< std::setw(30) << std::left << in_out << std::setw(30) << std::left << address << std::setw(20) << info.peer_id + << std::setw(20) << info.support_flags << std::setw(30) << std::to_string(info.recv_count) + "(" + std::to_string(info.recv_idle_time) + ")/" + std::to_string(info.send_count) + "(" + std::to_string(info.send_idle_time) + ")" << std::setw(25) << info.state << std::setw(20) << info.live_time |