X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fplugins%2Fnat%2Fnat44-ed%2Fnat44_ed_api.c;fp=src%2Fplugins%2Fnat%2Fnat44-ed%2Fnat44_ed_api.c;h=1f01410afcea5086a36b2e6cef74a291388155a4;hb=d9df1650385cd784429d3a49bffa673c450c643e;hp=681fcc0a50be6c54c9c80e3cad5dadb07d44056e;hpb=6bec05b56dde182e4427f567828a6954a3a34995;p=vpp.git diff --git a/src/plugins/nat/nat44-ed/nat44_ed_api.c b/src/plugins/nat/nat44-ed/nat44_ed_api.c index 681fcc0a50b..1f01410afce 100644 --- a/src/plugins/nat/nat44-ed/nat44_ed_api.c +++ b/src/plugins/nat/nat44-ed/nat44_ed_api.c @@ -1249,6 +1249,38 @@ nat44_ed_vrf_tables_send_details (vl_api_registration_t *rp, u32 context, vl_api_send_msg (rp, (u8 *) mp); } +static void +nat44_ed_vrf_tables_send_details_v2 (vl_api_registration_t *rp, u32 context, + vrf_table_t *t) +{ + snat_main_t *sm = &snat_main; + vl_api_nat44_ed_vrf_tables_v2_details_t *mp; + + u32 *vrf_ids = 0; + vrf_route_t *r; + + mp = vl_msg_api_alloc_zero (sizeof (*mp) + + sizeof (mp->vrf_ids[0]) * vec_len (t->routes)); + mp->_vl_msg_id = clib_net_to_host_u16 (VL_API_NAT44_ED_VRF_TABLES_DETAILS + + sm->msg_id_base); + mp->context = context; + mp->n_vrf_ids = clib_net_to_host_u32 (vec_len (t->routes)); + mp->table_vrf_id = clib_net_to_host_u32 (t->table_vrf_id); + pool_foreach (r, t->routes) + { + vec_add1 (vrf_ids, clib_net_to_host_u32 (r->vrf_id)); + } + + // copy the records + clib_memcpy (mp->vrf_ids, vrf_ids, + sizeof (mp->vrf_ids[0]) * vec_len (t->routes)); + + vec_free (vrf_ids); + + // send the message + vl_api_send_msg (rp, (u8 *) mp); +} + static void vl_api_nat44_ed_vrf_tables_dump_t_handler ( vl_api_nat44_ed_vrf_tables_dump_t *mp) @@ -1267,6 +1299,24 @@ vl_api_nat44_ed_vrf_tables_dump_t_handler ( } } +static void +vl_api_nat44_ed_vrf_tables_v2_dump_t_handler ( + vl_api_nat44_ed_vrf_tables_v2_dump_t *mp) +{ + snat_main_t *sm = &snat_main; + vl_api_registration_t *rp; + vrf_table_t *t; + + rp = vl_api_client_index_to_registration (mp->client_index); + if (rp == 0) + return; + + pool_foreach (t, sm->vrf_tables) + { + nat44_ed_vrf_tables_send_details_v2 (rp, mp->context, t); + } +} + /* user (internal host) key */ typedef struct {