/Get the steering
rmp->traffic_type = t->classify.traffic_type;
rmp->fib_table = htonl (t->classify.l3.fib_table);
ip_address_encode (&t->classify.l3.prefix, IP46_TYPE_ANY,
&rmp->prefix.address);
rmp->prefix.len = t->classify.l3.mask_width;
rmp->sw_if_index = htonl (t->classify.l2.sw_if_index);
rmp->context = context;
vl_api_send_msg (reg, (u8 *) rmp);
}
static void vl_api_sr_steering_pol_dump_t_handler
(vl_api_sr_policies_dump_t * mp)
{
vl_api_registration_t *reg;
ip6_sr_main_t *sm = &sr_main;
ip6_sr_steering_policy_t *t;
reg = vl_api_client_index_to_registration (mp->client_index);
if (!reg)
return;
/* *INDENT-OFF* */
pool_foreach (t, sm->steer_policies,
({
send_sr_steering_pol_details(t, reg, mp->context);
}));
/* *INDENT-ON* */
}
/*
* sr_api_hookup
* Add vpe's API message handlers to the table.
* vlib has already mapped shared memory and
* added the client registration handlers.
* See .../vlib-api/vlibmemory/memclnt_vlib.c:memclnt_process()
*/
#define vl_msg_name_crc_list
#include <vnet/vnet_all_api_h.h>
#undef vl_msg_name_crc_list
static void
setup_message_id_table (api_main_t * am)
{
#define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
foreach_vl_msg_name_crc_sr;
#undef _
}
static clib_error_t *
sr_api_hookup (vlib_main_t * vm)
{
api_main_t *am = vlibapi_get_main ();
#define _(N,n) \
vl_msg_api_set_handlers(VL_API_##N, #n, \
vl_api_##n##_t_handler, \
vl_noop_handler, \
vl_api_##n##_t_endian, \
vl_api_##n##_t_print, \
sizeof(vl_api_##n##_t), 1);
foreach_vpe_api_msg;
#undef _
/*
* Set up the (msg_name, crc, message-id) table
*/
setup_message_id_table (am);
return 0;
}
VLIB_API_INIT_FUNCTION (sr_api_hookup);
/*
* fd.io coding-style-patch-verification: ON
*
* Local Variables:
* eval: (c-set-style "gnu")
* End:
*/
|