diff options
author | Dave Barach <dave@barachs.net> | 2016-02-19 09:06:23 -0500 |
---|---|---|
committer | Dave Barach <dave@barachs.net> | 2016-02-19 09:06:46 -0500 |
commit | b44e9bc90b634b07d5f93a731a95028adc73bcbc (patch) | |
tree | ba6477830970b8cb663ad2c393cdca778418fb13 /vlib-api/vlibapi/api.h | |
parent | c07bf5d5032e2b3ed4a651c8e6b8ff2131bc79c6 (diff) |
Serialize and upload the data plane node graph
Include node names and graph arcs. Prep work for uploading node
runtime data, so the latter can be reported in a comprehensible
manner.
Change-Id: I215b1f8cff244200c37c7e088f1f22229dc97eb6
Signed-off-by: Dave Barach <dave@barachs.net>
Diffstat (limited to 'vlib-api/vlibapi/api.h')
-rw-r--r-- | vlib-api/vlibapi/api.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/vlib-api/vlibapi/api.h b/vlib-api/vlibapi/api.h index f620d950d8e..1f45a05738c 100644 --- a/vlib-api/vlibapi/api.h +++ b/vlib-api/vlibapi/api.h @@ -215,6 +215,10 @@ int vl_msg_api_pd_handler (void *mp, int rv); void vl_msg_api_set_first_available_msg_id (u16 first_avail); u16 vl_msg_api_get_msg_ids (char * name, int n); +/* node_serialize.c prototypes */ +u8 * vlib_node_serialize (vlib_node_main_t *nm, u8 * vector); +vlib_node_t ** vlib_node_unserialize (u8 * vector); + #define VLIB_API_INIT_FUNCTION(x) VLIB_DECLARE_INIT_FUNCTION(x,api_init) #endif /* included_api_h */ |