mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2025-07-07 18:38:21 +00:00
Merge pull request #5595
2aa1134
daemon: display peer address type in print_cn (moneromooo-monero)
This commit is contained in:
commit
8774555d29
4 changed files with 21 additions and 0 deletions
|
@ -46,6 +46,19 @@
|
|||
namespace daemonize {
|
||||
|
||||
namespace {
|
||||
const char *get_address_type_name(epee::net_utils::address_type address_type)
|
||||
{
|
||||
switch (address_type)
|
||||
{
|
||||
default:
|
||||
case epee::net_utils::address_type::invalid: return "invalid";
|
||||
case epee::net_utils::address_type::ipv4: return "IPv4";
|
||||
case epee::net_utils::address_type::ipv6: return "IPv6";
|
||||
case epee::net_utils::address_type::i2p: return "I2P";
|
||||
case epee::net_utils::address_type::tor: return "Tor";
|
||||
}
|
||||
}
|
||||
|
||||
void print_peer(std::string const & prefix, cryptonote::peer const & peer)
|
||||
{
|
||||
time_t now;
|
||||
|
@ -590,6 +603,7 @@ bool t_rpc_command_executor::print_connections() {
|
|||
}
|
||||
|
||||
tools::msg_writer() << std::setw(30) << std::left << "Remote Host"
|
||||
<< std::setw(8) << "Type"
|
||||
<< std::setw(6) << "SSL"
|
||||
<< std::setw(20) << "Peer id"
|
||||
<< std::setw(20) << "Support Flags"
|
||||
|
@ -610,6 +624,7 @@ bool t_rpc_command_executor::print_connections() {
|
|||
tools::msg_writer()
|
||||
//<< std::setw(30) << std::left << in_out
|
||||
<< std::setw(30) << std::left << address
|
||||
<< std::setw(8) << (get_address_type_name((epee::net_utils::address_type)info.address_type))
|
||||
<< std::setw(6) << (info.ssl ? "yes" : "no")
|
||||
<< std::setw(20) << epee::string_tools::pad_string(info.peer_id, 16, '0', true)
|
||||
<< std::setw(20) << info.support_flags
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue