diff options
author | 2004-04-27 04:06:10 +0000 | |
---|---|---|
committer | 2004-04-27 04:06:10 +0000 | |
commit | ae47acd4772c5ad72e68a84fb8c8275242d9b884 (patch) | |
tree | 4fb6e1ec5c0444789b2a835a95a327f0e358f043 | |
parent | initial route refresh support per RFC2918 (diff) | |
download | wireguard-openbsd-ae47acd4772c5ad72e68a84fb8c8275242d9b884.tar.xz wireguard-openbsd-ae47acd4772c5ad72e68a84fb8c8275242d9b884.zip |
print route refresh capability if present
-rw-r--r-- | usr.sbin/bgpctl/bgpctl.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.sbin/bgpctl/bgpctl.c b/usr.sbin/bgpctl/bgpctl.c index 36ed6dcb5ab..2c45082d379 100644 --- a/usr.sbin/bgpctl/bgpctl.c +++ b/usr.sbin/bgpctl/bgpctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bgpctl.c,v 1.53 2004/04/25 23:31:16 henning Exp $ */ +/* $OpenBSD: bgpctl.c,v 1.54 2004/04/27 04:06:10 henning Exp $ */ /* * Copyright (c) 2003 Henning Brauer <henning@openbsd.org> @@ -336,7 +336,7 @@ show_neighbor_msg(struct imsg *imsg, enum neighbor_views nv) printf(" Last read %s, holdtime %us, keepalive interval %us\n", fmt_timeframe(p->stats.last_read), p->holdtime, p->holdtime/3); - if (p->capa.mp_v4 || p->capa.mp_v6) { + if (p->capa.mp_v4 || p->capa.mp_v6 || p->capa.refresh) { printf(" Neighbor capabilities:\n"); if (p->capa.mp_v4) { printf(" Multiprotocol extensions: IPv4:"); @@ -346,6 +346,8 @@ show_neighbor_msg(struct imsg *imsg, enum neighbor_views nv) printf(" Multiprotocol extensions: IPv6:"); print_neighbor_capa_mp_safi(p->capa.mp_v6); } + if (p->capa.refresh) + printf(" Route Refresh\n"); } printf("\n"); switch (nv) { |