diff options
author | Dave Barach <dave@barachs.net> | 2016-10-21 12:58:51 -0400 |
---|---|---|
committer | Chris Luke <chris_luke@comcast.com> | 2016-10-21 19:11:00 +0000 |
commit | 7b0196b8262a7a441024514976fcc29980f3fe6c (patch) | |
tree | 596ec0bd594abffdb15f35deb82a314641b2f44a | |
parent | 047144853f05f2fd9f9dd0166d66cf52e641ba13 (diff) |
Pretty-print vl_api_api_get_first_msg_id_t msgs
Change-Id: I380bef59d64c8c647a437026085dfa20b27727e1
Signed-off-by: Dave Barach <dave@barachs.net>
-rw-r--r-- | vpp/vpp-api/custom_dump.c | 13 |
1 files changed, 12 insertions, 1 deletions
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) { |