X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=vpp%2Fvpp-api%2Fcustom_dump.c;h=cb91d73cbfbc7652cc610ce01f6c72077f8cd25f;hb=9e6ed6e2e1b8af46a317f9448da2bca8d8c5395d;hp=a2eb1f279a4d0ef67d37d7c4f90534146f6d3f6d;hpb=689acafcabbc229a89cdbe5e628ca5e7a573afb2;p=vpp.git diff --git a/vpp/vpp-api/custom_dump.c b/vpp/vpp-api/custom_dump.c index a2eb1f279a4..cb91d73cbfb 100644 --- a/vpp/vpp-api/custom_dump.c +++ b/vpp/vpp-api/custom_dump.c @@ -1846,6 +1846,88 @@ static void *vl_api_classify_session_dump_t_print FINISH; } +static void *vl_api_ipfix_enable_t_print +(vl_api_ipfix_enable_t * mp, void *handle) +{ + u8 * s; + + s = format (0, "SCRIPT: ipfix_enable "); + + s = format (s, "collector-address %U ", format_ip4_address, + (ip4_address_t *) mp->collector_address); + s = format (s, "collector-port %d ", ntohs(mp->collector_port)); + s = format (s, "src-address %U ", format_ip4_address, + (ip4_address_t *) mp->src_address); + s = format (s, "vrf-id %d ", ntohl(mp->vrf_id)); + s = format (s, "path-mtu %d ", ntohl(mp->path_mtu)); + s = format (s, "template-interval %d ", ntohl(mp->template_interval)); + + FINISH; +} + +static void *vl_api_ipfix_dump_t_print +(vl_api_ipfix_dump_t * mp, void *handle) +{ + u8 * s; + + s = format (0, "SCRIPT: ipfix_dump "); + + FINISH; +} + +static void *vl_api_get_next_index_t_print +(vl_api_get_next_index_t * mp, void *handle) +{ + u8 * s; + + s = format (0, "SCRIPT: get_next_index "); + s = format (s, "node-name %s ", mp->node_name); + s = format (s, "next-node-name %s ", mp->next_name); + + FINISH; +} + +static void *vl_api_pg_create_interface_t_print +(vl_api_pg_create_interface_t * mp, void *handle) +{ + u8 * s; + + s = format (0, "SCRIPT: pg_create_interface "); + s = format (0, "if_id %d", ntohl(mp->interface_id)); + + FINISH; +} + +static void *vl_api_pg_capture_t_print +(vl_api_pg_capture_t * mp, void *handle) +{ + u8 * s; + + s = format (0, "SCRIPT: pg_capture "); + s = format (0, "if_id %d ", ntohl(mp->interface_id)); + s = format (0, "pcap %s", mp->pcap_file_name); + if (mp->count != ~0) + s = format (s, "count %d ", ntohl(mp->count)); + if (!mp->is_enabled) + s = format (s, "disable"); + + FINISH; +} + +static void *vl_api_pg_enable_disable_t_print +(vl_api_pg_enable_disable_t * mp, void *handle) +{ + u8 * s; + + s = format (0, "SCRIPT: pg_enable_disable "); + if (ntohl(mp->stream_name_length) > 0) + s = format (s, "stream %s", mp->stream_name); + if (!mp->is_enabled) + s = format (s, "disable"); + + FINISH; +} + #define foreach_custom_print_function \ _(CREATE_LOOPBACK, create_loopback) \ _(SW_INTERFACE_SET_FLAGS, sw_interface_set_flags) \ @@ -1941,9 +2023,15 @@ _(MPLS_FIB_DECAP_DUMP, mpls_fib_decap_dump) \ _(CLASSIFY_TABLE_IDS,classify_table_ids) \ _(CLASSIFY_TABLE_BY_INTERFACE, classify_table_by_interface) \ _(CLASSIFY_TABLE_INFO,classify_table_info) \ -_(CLASSIFY_SESSION_DUMP,classify_session_dump) - -void vl_msg_api_custom_dump_configure (api_main_t *am) +_(CLASSIFY_SESSION_DUMP,classify_session_dump) \ +_(IPFIX_ENABLE,ipfix_enable) \ +_(IPFIX_DUMP,ipfix_dump) \ +_(GET_NEXT_INDEX, get_next_index) \ +_(PG_CREATE_INTERFACE,pg_create_interface) \ +_(PG_CAPTURE, pg_capture) \ +_(PG_ENABLE_DISABLE, pg_enable_disable) + +void vl_msg_api_custom_dump_configure (api_main_t *am) { #define _(n,f) am->msg_print_handlers[VL_API_##n] \ = (void *) vl_api_##f##_t_print;