summaryrefslogtreecommitdiff
path: root/zebra/zserv.c
diff options
context:
space:
mode:
authorJafar Al-Gharaibeh <Jafaral@users.noreply.github.com>2018-06-29 12:41:02 -0500
committerGitHub <noreply@github.com>2018-06-29 12:41:02 -0500
commit20e5fd7ab52d37a0fade8dc6cd5b6070779a484d (patch)
tree4f2d03607e80e303892ec6757b19679a43045dda /zebra/zserv.c
parentb46f306ed5b0f591d9081ec68e737538e4ce746e (diff)
parent87270023ebb5d29f5ef7a583f919004ad2326560 (diff)
Merge pull request #2532 from donaldsharp/various_stuff
Redistribution and some extra developer debug code
Diffstat (limited to 'zebra/zserv.c')
-rw-r--r--zebra/zserv.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/zebra/zserv.c b/zebra/zserv.c
index 7dbbd129d9..b297f75ed9 100644
--- a/zebra/zserv.c
+++ b/zebra/zserv.c
@@ -939,6 +939,11 @@ static void zebra_show_client_detail(struct vty *vty, struct zserv *client)
vty_out(vty, "MAC-IP add notifications: %d\n", client->macipadd_cnt);
vty_out(vty, "MAC-IP delete notifications: %d\n", client->macipdel_cnt);
+#if defined DEV_BUILD
+ vty_out(vty, "Input Fifo: %zu:%zu Output Fifo: %zu:%zu\n",
+ client->ibuf_fifo->count, client->ibuf_fifo->max_count,
+ client->obuf_fifo->count, client->obuf_fifo->max_count);
+#endif
vty_out(vty, "\n");
return;
}