api: vat2 and json autogeneration for api messages
[vpp.git] / src / vat2 / vat2_helpers.h
1 /*
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
19 /* For control ping */
20 #define vl_endianfun
21 #include <vpp/api/vpe.api.h>
22 #undef vl_endianfun
23
24 static inline void
25 vat2_control_ping (u32 context)
26 {
27     vl_api_control_ping_t mp = {0};
28     mp._vl_msg_id = vac_get_msg_index(VL_API_CONTROL_PING_CRC);
29     mp.context = context;
30     vl_api_control_ping_t_endian(&mp);
31     vac_write((char *)&mp, sizeof(mp));
32 }
33
34 #endif