From 64a4bd09f0704eff92fdcbcede20662f46ab0c42 Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Thu, 11 May 2017 11:44:07 -0400 Subject: zebra: Fix kernel netlink hex dump of information 1) Fix the kernel send and recv hex dump of what we are sending to the kernel 2) When configuring the debugs under 'conf t' display it too. Signed-off-by: Donald Sharp --- zebra/debug.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'zebra/debug.c') diff --git a/zebra/debug.c b/zebra/debug.c index a42d5aa3ef..cb1ed359a8 100644 --- a/zebra/debug.c +++ b/zebra/debug.c @@ -384,6 +384,16 @@ config_write_debug (struct vty *vty) vty_out (vty, "debug zebra kernel%s", VTY_NEWLINE); write++; } + if (IS_ZEBRA_DEBUG_KERNEL_MSGDUMP_RECV) + { + vty_out (vty, "debug zebra kernel msgdump recv%s", VTY_NEWLINE); + write++; + } + if (IS_ZEBRA_DEBUG_KERNEL_MSGDUMP_SEND) + { + vty_out (vty, "debug zebra kernel msgdump send%s", VTY_NEWLINE); + write++; + } /* Check here using flags as the 'macro' does an OR */ if (CHECK_FLAG (zebra_debug_rib, ZEBRA_DEBUG_RIB)) { -- cgit v1.2.3