Ole Troan | df87f80 | 2020-11-18 19:17:48 +0100 | [diff] [blame] | 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 | |
Florin Coras | a1400ce | 2021-09-15 09:02:08 -0700 | [diff] [blame^] | 19 | #include <vlibmemory/vlib.api_types.h> |
| 20 | |
Ole Troan | df87f80 | 2020-11-18 19:17:48 +0100 | [diff] [blame] | 21 | /* For control ping */ |
| 22 | #define vl_endianfun |
Florin Coras | a1400ce | 2021-09-15 09:02:08 -0700 | [diff] [blame^] | 23 | #include <vlibmemory/vlib.api.h> |
Ole Troan | df87f80 | 2020-11-18 19:17:48 +0100 | [diff] [blame] | 24 | #undef vl_endianfun |
| 25 | |
| 26 | static inline void |
| 27 | vat2_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; |
| 32 | vl_api_control_ping_t_endian(&mp); |
| 33 | vac_write((char *)&mp, sizeof(mp)); |
| 34 | } |
| 35 | |
| 36 | #endif |