From 7f475bf4b77ae2e74d65c62a22dc550329bb59c1 Mon Sep 17 00:00:00 2001 From: Dave Barach Date: Tue, 26 May 2020 11:19:28 -0400 Subject: dhcp: vat support for the dhcp_client_dump API Also: permanently solve ordering issues with the vpp builtin vat plugin loader, by explicitly loading vat plugins once we're sure that all data plane plugins have registered their APIs / API message handlers. Fix compilation / link errors when the vpp builtin vat plugin loader is disbled by cmake configuration. Type: fix Signed-off-by: Dave Barach Change-Id: Id553c63ae860ebfc196c5ad4b55c19e08fec2c9e Signed-off-by: Ole Troan --- src/plugins/dhcp/dhcp_test.c | 35 ++++++++++++++++++++++++++++++++--- 1 file changed, 32 insertions(+), 3 deletions(-) (limited to 'src/plugins/dhcp/dhcp_test.c') diff --git a/src/plugins/dhcp/dhcp_test.c b/src/plugins/dhcp/dhcp_test.c index a0d6f416e6b..0eb87ab3257 100644 --- a/src/plugins/dhcp/dhcp_test.c +++ b/src/plugins/dhcp/dhcp_test.c @@ -366,10 +366,41 @@ api_dhcp6_pd_send_client_message (vat_main_t * vam) return -1; } +static void +vl_api_dhcp_client_details_t_handler (vl_api_dhcp_client_details_t * mp) +{ + vat_main_t *vam = &vat_main; + vl_api_dhcp_client_t *cp; + vl_api_dhcp_lease_t *lp; + + cp = &mp->client; + lp = &mp->lease; + + print (vam->ofp, "sw_if_index %d, id '%s'", ntohl (cp->sw_if_index), + cp->id); + + print (vam->ofp, "leased address %U, router address %U", + format_ip4_address, &lp->host_address.un, + format_ip4_address, &lp->router_address.un); +} + static int api_dhcp_client_dump (vat_main_t * vam) { - return -1; + vl_api_dhcp_plugin_control_ping_t *mp_ping; + vl_api_dhcp_client_dump_t *mp; + int ret; + + M (DHCP_CLIENT_DUMP, mp); + + S (mp); + + /* Use a control ping for synchronization */ + MPING (DHCP_PLUGIN_CONTROL_PING, mp_ping); + S (mp_ping); + + W (ret); + return ret; } static int @@ -396,8 +427,6 @@ api_dhcp_plugin_get_version (vat_main_t * vam) return -1; } -#define vl_api_dhcp_client_details_t_handler vl_noop_handler - static void vl_api_dhcp_plugin_get_version_reply_t_handler (vl_api_dhcp_plugin_get_version_reply_t * mp) -- cgit 1.2.3-korg