From: Dave Barach Date: Fri, 21 Oct 2016 16:58:51 +0000 (-0400) Subject: Pretty-print vl_api_api_get_first_msg_id_t msgs X-Git-Tag: v17.01-rc0~67 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F30%2F3530%2F2;p=vpp.git Pretty-print vl_api_api_get_first_msg_id_t msgs Change-Id: I380bef59d64c8c647a437026085dfa20b27727e1 Signed-off-by: Dave Barach --- diff --git a/vpp/vpp-api/custom_dump.c b/vpp/vpp-api/custom_dump.c index cce6bb83853..2eafac9ca97 100644 --- a/vpp/vpp-api/custom_dump.c +++ b/vpp/vpp-api/custom_dump.c @@ -2779,6 +2779,16 @@ static void *vl_api_flow_classify_dump_t_print FINISH; } +static void *vl_api_get_first_msg_id_t_print + (vl_api_get_first_msg_id_t * mp, void *handle) +{ + u8 *s; + + s = format (0, "SCRIPT: get_first_msg_id %s ", mp->name); + + FINISH; +} + #define foreach_custom_print_no_arg_function \ _(lisp_eid_table_vni_dump) \ _(lisp_map_resolver_dump) \ @@ -2941,7 +2951,8 @@ _(DELETE_SUBIF, delete_subif) \ _(L2_INTERFACE_PBB_TAG_REWRITE, l2_interface_pbb_tag_rewrite) \ _(PUNT, punt) \ _(FLOW_CLASSIFY_SET_INTERFACE, flow_classify_set_interface) \ -_(FLOW_CLASSIFY_DUMP, flow_classify_dump) +_(FLOW_CLASSIFY_DUMP, flow_classify_dump) \ +_(GET_FIRST_MSG_ID, get_first_msg_id) void vl_msg_api_custom_dump_configure (api_main_t * am) {