aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/arping
diff options
context:
space:
mode:
authorKlement Sekera <ksekera@cisco.com>2021-12-03 10:48:13 +0000
committerKlement Sekera <ksekera@cisco.com>2021-12-03 10:51:11 +0000
commit5d5f85f5e4003476fb6d9a0ccd6ad58ad90e5138 (patch)
treeb1f30e5bc4de1610badc00093d33ee88ca058336 /src/plugins/arping
parent03092c1982468ff6ffe260b0215f910d4c486b04 (diff)
api: refactor to use REPLY_MSG_ID_BASE #define
REPLY_MSG_ID_BASE is the standard way to define reply message id base, so this refactor makes all the files use that. This is a preparation patch for future safety add-ons which rely on REPLY_MACRO* parameters to be preprocessor tokens identifying the message instead, Type: refactor Signed-off-by: Klement Sekera <ksekera@cisco.com> Change-Id: Ibe3e056a3d9326d08af45bbcb25588b11e870141
Diffstat (limited to 'src/plugins/arping')
-rw-r--r--src/plugins/arping/arping_api.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/arping/arping_api.c b/src/plugins/arping/arping_api.c
index 015c6148f5e..e0c47c7cf33 100644
--- a/src/plugins/arping/arping_api.c
+++ b/src/plugins/arping/arping_api.c
@@ -31,6 +31,7 @@
#include <arping/arping.api_enum.h>
#include <arping/arping.api_types.h>
+#define REPLY_MSG_ID_BASE (am->msg_id_base)
#include <vlibapi/api_helper_macros.h>
static void
@@ -57,7 +58,7 @@ vl_api_arping_t_handler (vl_api_arping_t *mp)
BAD_SW_IF_INDEX_LABEL;
- REPLY_MACRO2 (VL_API_ARPING_REPLY + am->msg_id_base,
+ REPLY_MACRO2 (VL_API_ARPING_REPLY,
({ rmp->reply_count = ntohl (args.reply_count); }));
}