diff options
author | Benoît Ganne <bganne@cisco.com> | 2022-03-04 17:17:04 +0100 |
---|---|---|
committer | Ole Tr�an <otroan@employees.org> | 2022-03-23 18:23:29 +0000 |
commit | 7f9256e31c13fdfb640eff9d7775bc50b4396543 (patch) | |
tree | 3d799496f125655ca973d6da1c99fabc12787824 /src/vlibapi/api.h | |
parent | 8296a1d043ce6584561dabbc671087e040a3ae13 (diff) |
api: better segregate client and server code
- move memory and server specific vl_msg_api_handler_with_vm_node()
to memory server code only
- keep api_global_main static
Apart from being cleaner, this also helps avoiding symbols conflict
when both client and server libs are loaded in the same process, as is
done by the prom plugin.
Those symbols conflict confuse ASan and can be nasty to debug.
Type: improvement
Change-Id: Iaf58596cc753ad8d3fedd8d65c4bf480ac129c2c
Signed-off-by: Benoît Ganne <bganne@cisco.com>
Diffstat (limited to 'src/vlibapi/api.h')
-rw-r--r-- | src/vlibapi/api.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/vlibapi/api.h b/src/vlibapi/api.h index d05395a213c..d290301f8d4 100644 --- a/src/vlibapi/api.h +++ b/src/vlibapi/api.h @@ -105,10 +105,6 @@ int vl_msg_api_trace_onoff (api_main_t * am, vl_api_trace_which_t which, int vl_msg_api_trace_free (api_main_t * am, vl_api_trace_which_t which); int vl_msg_api_trace_configure (api_main_t * am, vl_api_trace_which_t which, u32 nitems); -void vl_msg_api_handler_with_vm_node (api_main_t * am, svm_region_t * vlib_rp, - void *the_msg, vlib_main_t * vm, - vlib_node_runtime_t * node, - u8 is_private); u32 vl_msg_api_max_length (void *mp); vl_api_trace_t *vl_msg_api_trace_get (api_main_t * am, vl_api_trace_which_t which); |