RPKI: Display cache server port on show protocol
Thanks to Luiz Amaral for the idea.
This commit is contained in:
parent
9a9439d5e1
commit
7bb06b34a1
1 changed files with 13 additions and 2 deletions
|
@ -828,16 +828,27 @@ rpki_show_proto_info(struct proto *P)
|
||||||
if (cache)
|
if (cache)
|
||||||
{
|
{
|
||||||
const char *transport_name = "---";
|
const char *transport_name = "---";
|
||||||
|
uint default_port = 0;
|
||||||
|
|
||||||
switch (cf->tr_config.type)
|
switch (cf->tr_config.type)
|
||||||
{
|
{
|
||||||
#if HAVE_LIBSSH
|
#if HAVE_LIBSSH
|
||||||
case RPKI_TR_SSH: transport_name = "SSHv2"; break;
|
case RPKI_TR_SSH:
|
||||||
|
transport_name = "SSHv2";
|
||||||
|
default_port = RPKI_SSH_PORT;
|
||||||
|
break;
|
||||||
#endif
|
#endif
|
||||||
case RPKI_TR_TCP: transport_name = "Unprotected over TCP"; break;
|
case RPKI_TR_TCP:
|
||||||
|
transport_name = "Unprotected over TCP";
|
||||||
|
default_port = RPKI_TCP_PORT;
|
||||||
|
break;
|
||||||
};
|
};
|
||||||
|
|
||||||
cli_msg(-1006, " Cache server: %s", cf->hostname);
|
cli_msg(-1006, " Cache server: %s", cf->hostname);
|
||||||
|
|
||||||
|
if (cf->port != default_port)
|
||||||
|
cli_msg(-1006, " Cache port: %u", cf->port);
|
||||||
|
|
||||||
cli_msg(-1006, " Status: %s", rpki_cache_state_to_str(cache->state));
|
cli_msg(-1006, " Status: %s", rpki_cache_state_to_str(cache->state));
|
||||||
cli_msg(-1006, " Transport: %s", transport_name);
|
cli_msg(-1006, " Transport: %s", transport_name);
|
||||||
cli_msg(-1006, " Protocol version: %u", cache->version);
|
cli_msg(-1006, " Protocol version: %u", cache->version);
|
||||||
|
|
Loading…
Reference in a new issue