diff options
author | Ole Troan <ot@cisco.com> | 2019-03-07 13:03:26 +0100 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2019-03-07 17:25:50 +0000 |
commit | d0dcf768532534d67e0a65629ec51d6ee088344c (patch) | |
tree | 3d3c42ecd2c1db3bb3eff5e36da02828e306db4b /src/plugins/cdp | |
parent | 67a3e2d130334094534a35236d2a623faa2399ed (diff) |
Remove local REPLY_MACRO so that socket transport works.
memif, lacp, nsh and cdp used local REPLY_MACROs.
Remove and use those in api_helper.h
Change-Id: Ib01d6ae5cff0b6f1cef90996a54b3177f0c53463
Signed-off-by: Ole Troan <ot@cisco.com>
Diffstat (limited to 'src/plugins/cdp')
-rw-r--r-- | src/plugins/cdp/cdp.c | 25 |
1 files changed, 2 insertions, 23 deletions
diff --git a/src/plugins/cdp/cdp.c b/src/plugins/cdp/cdp.c index 3356437a9ea..08456ac2faf 100644 --- a/src/plugins/cdp/cdp.c +++ b/src/plugins/cdp/cdp.c @@ -47,29 +47,8 @@ #include <cdp/cdp_all_api_h.h> #undef vl_api_version -/* - * A handy macro to set up a message reply. - * Assumes that the following variables are available: - * mp - pointer to request message - * rmp - pointer to reply message type - * rv - return value - */ - -#define REPLY_MACRO(t) \ -do { \ - unix_shared_memory_queue_t * q = \ - vl_api_client_index_to_input_queue (mp->client_index); \ - if (!q) \ - return; \ - \ - rmp = vl_msg_api_alloc (sizeof (*rmp)); \ - rmp->_vl_msg_id = ntohs((t)+cm->msg_id_base); \ - rmp->context = mp->context; \ - rmp->retval = ntohl(rv); \ - \ - vl_msg_api_send_shmem (q, (u8 *)&rmp); \ -} while(0); - +#define REPLY_MSG_ID_BASE cm->msg_id_base +#include <vlibapi/api_helper_macros.h> /* List of message types that this plugin understands */ |