uint8_t *lim = pnt + length;
bool ospf_tlv_header;
char tlv_type[6];
+ int i;
if (json) {
continue;
}
- vty_out(vty, "\n%*sTLV type %u: ", indent, "", sub_type);
+ vty_out(vty, "\n%*sTLV type %u: 0x", indent, "", sub_type);
if (pnt + sub_length > lim) {
vty_out(vty, "Bad length received: %u\n", sub_length);
break;
}
- bgp_linkstate_tlv_hexa_display(vty, pnt, sub_length, NULL);
+ for (i = 0; i < sub_length; i++) {
+ if (i != 0 && i % 8 == 0)
+ vty_out(vty, " ");
+ vty_out(vty, "%02x", *pnt);
+ }
}
+ if (!json)
+ vty_out(vty, "\n");
}
static void bgp_linkstate_tlv_rtm_capability_display(struct vty *vty,