blob: d9ce2af6b35a6205ed27f4d1466ef9a7bc20e951 [file] [log] [blame]
Ole Troandf87f802020-11-18 19:17:48 +01001/*
2 * Copyright (c) 2020 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#ifndef included_vat2_helpers_h
17#define included_vat2_helpers_h
18
Florin Corasa1400ce2021-09-15 09:02:08 -070019#include <vlibmemory/vlib.api_types.h>
20
Ole Troandf87f802020-11-18 19:17:48 +010021/* For control ping */
22#define vl_endianfun
Filip Tehlarf0e67d72021-07-23 22:03:05 +000023#include <vlibmemory/memclnt.api.h>
Ole Troandf87f802020-11-18 19:17:48 +010024#undef vl_endianfun
25
26static inline void
27vat2_control_ping (u32 context)
28{
29 vl_api_control_ping_t mp = {0};
30 mp._vl_msg_id = vac_get_msg_index(VL_API_CONTROL_PING_CRC);
31 mp.context = context;
Ole Troan1a319aa2024-04-26 14:11:20 +020032 vl_api_control_ping_t_endian (&mp, 1 /* to network */);
Ole Troandf87f802020-11-18 19:17:48 +010033 vac_write((char *)&mp, sizeof(mp));
34}
35
36#endif