diff options
author | Shwetha Bhandari <shwethab@cisco.com> | 2017-04-27 14:13:10 +0530 |
---|---|---|
committer | Ole Trøan <otroan@employees.org> | 2017-04-27 10:49:38 +0000 |
commit | 851a37a78f80427a910a9cb571e5a7d70c120e38 (patch) | |
tree | 824cbc3f48025f882367641b33bff46e649dfdbe /src/plugins/ioam/ip6 | |
parent | 31d43481c4a19ab552ff20c43b5390e6e1a10e41 (diff) |
ioam: adding missing setup api msg crc table
Change-Id: Ic95fe6179de1151796188813cc595187d4c842a0
Signed-off-by: Shwetha Bhandari <shwethab@cisco.com>
Diffstat (limited to 'src/plugins/ioam/ip6')
-rw-r--r-- | src/plugins/ioam/ip6/ioam_cache.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/plugins/ioam/ip6/ioam_cache.c b/src/plugins/ioam/ip6/ioam_cache.c index a4079e8436e..92e7075d680 100644 --- a/src/plugins/ioam/ip6/ioam_cache.c +++ b/src/plugins/ioam/ip6/ioam_cache.c @@ -186,6 +186,19 @@ ioam_cache_plugin_api_hookup (vlib_main_t * vm) return 0; } +#define vl_msg_name_crc_list +#include <ioam/ip6/ioam_cache_all_api_h.h> +#undef vl_msg_name_crc_list + +static void +setup_message_id_table (ioam_cache_main_t * sm, api_main_t * am) +{ +#define _(id,n,crc) \ + vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id + sm->msg_id_base); + foreach_vl_msg_name_crc_ioam_cache; +#undef _ +} + static clib_error_t * set_ioam_cache_command_fn (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd) @@ -334,6 +347,10 @@ ioam_cache_init (vlib_main_t * vm) ((char *) name, VL_MSG_FIRST_AVAILABLE); error = ioam_cache_plugin_api_hookup (vm); + + /* Add our API messages to the global name_crc hash table */ + setup_message_id_table (em, &api_main); + /* Hook this node to ip6-hop-by-hop */ ip6_hbyh_node = vlib_get_node_by_name (vm, (u8 *) "ip6-hop-by-hop"); em->cache_hbh_slot = |