From 23b26e71e79ed4f232ac972948a8a91b554ba5f4 Mon Sep 17 00:00:00 2001 From: Florin Coras Date: Thu, 1 Aug 2019 11:39:34 -0700 Subject: lb: fix usage of lb_main in test Type: fix Change-Id: I9f8a8da31624637c060a9757256589c8f372f192 Signed-off-by: Florin Coras --- src/plugins/lb/lb_test.c | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) (limited to 'src/plugins/lb/lb_test.c') diff --git a/src/plugins/lb/lb_test.c b/src/plugins/lb/lb_test.c index cc8cc58c0be..1edabb51f86 100644 --- a/src/plugins/lb/lb_test.c +++ b/src/plugins/lb/lb_test.c @@ -339,6 +339,13 @@ static void vl_api_lb_vip_details_t_handler (vl_api_lb_vip_details_t * mp) { vat_main_t *vam = &vat_main; + + print (vam->ofp, "%24U%14d%14d%18d", + format_ip46_address, &mp->vip.pfx.address, IP46_TYPE_ANY, + mp->vip.pfx.len, + mp->vip.protocol, + ntohs (mp->vip.port)); +/* lb_main_t *lbm = &lb_main; u32 i = 0; @@ -354,6 +361,7 @@ static void vl_api_lb_vip_details_t_handler mp->vip.protocol, ntohs (mp->vip.port)); } +*/ } static int api_lb_vip_dump (vat_main_t * vam) @@ -372,12 +380,20 @@ static void vl_api_lb_as_details_t_handler (vl_api_lb_as_details_t * mp) { vat_main_t *vam = &vat_main; - lb_main_t *lbm = &lb_main; + + print (vam->ofp, "%24U%14d%14d%18d%d%d", + format_ip46_address, &mp->vip.pfx.address, IP46_TYPE_ANY, + mp->vip.pfx.len, + mp->vip.protocol, + ntohs (mp->vip.port), + mp->flags, + mp->in_use_since); //u32 i = 0; - print (vam->ofp, "%11d", pool_len(lbm->ass)); /* + lb_main_t *lbm = &lb_main; + print (vam->ofp, "%11d", pool_len(lbm->ass)); for (i=0; iass); i--) { print (vam->ofp, "%24U%14d%14d%18d", -- cgit 1.2.3-korg