From abfe365ef66e8868dcfce1e34e48c74dbe8f092b Mon Sep 17 00:00:00 2001 From: Filip Tehlar Date: Fri, 23 Jul 2021 18:24:19 +0000 Subject: ip: add api test file Type: improvement Signed-off-by: Filip Tehlar Change-Id: I49c4183a443b7b39924328900e6a6ac2e09be426 --- src/vlibapi/vat_helper_macros.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'src/vlibapi/vat_helper_macros.h') diff --git a/src/vlibapi/vat_helper_macros.h b/src/vlibapi/vat_helper_macros.h index 239e2091dc1..2e1b9422bf7 100644 --- a/src/vlibapi/vat_helper_macros.h +++ b/src/vlibapi/vat_helper_macros.h @@ -62,6 +62,19 @@ do { \ mp->client_index = vam->my_client_index; \ } while(0); +#define PING(_tm, mp_ping) \ + do \ + { \ + if (!(_tm)->ping_id) \ + (_tm)->ping_id = \ + vl_msg_api_get_msg_index ((u8 *) (VL_API_CONTROL_PING_CRC)); \ + mp_ping = vl_msg_api_alloc_as_if_client (sizeof (*mp_ping)); \ + mp_ping->_vl_msg_id = htons ((_tm)->ping_id); \ + mp_ping->client_index = vam->my_client_index; \ + vam->result_ready = 0; \ + } \ + while (0); + /* S: send a message */ #define S(mp) \ do { \ -- cgit 1.2.3-korg