Pavel Kotucek | bbe3362 | 2016-12-20 13:19:48 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2015-2016 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 | |
Jakub Grajciar | 3b2db90 | 2019-08-26 11:25:52 +0200 | [diff] [blame] | 16 | option version = "2.0.0"; |
| 17 | |
| 18 | import "vnet/interface_types.api"; |
| 19 | import "vnet/ethernet/ethernet_types.api"; |
Dave Barach | 0d056e5 | 2017-09-28 15:11:16 -0400 | [diff] [blame] | 20 | |
Pavel Kotucek | bbe3362 | 2016-12-20 13:19:48 +0100 | [diff] [blame] | 21 | /** \brief Create host-interface |
| 22 | @param client_index - opaque cookie to identify the sender |
| 23 | @param context - sender context, to match reply w/ request |
Pavel Kotucek | bbe3362 | 2016-12-20 13:19:48 +0100 | [diff] [blame] | 24 | @param hw_addr - interface MAC |
| 25 | @param use_random_hw_addr - use random generated MAC |
Jakub Grajciar | 3b2db90 | 2019-08-26 11:25:52 +0200 | [diff] [blame] | 26 | @param host_if_name - interface name |
Pavel Kotucek | bbe3362 | 2016-12-20 13:19:48 +0100 | [diff] [blame] | 27 | */ |
| 28 | define af_packet_create |
| 29 | { |
| 30 | u32 client_index; |
| 31 | u32 context; |
| 32 | |
Jakub Grajciar | 3b2db90 | 2019-08-26 11:25:52 +0200 | [diff] [blame] | 33 | vl_api_mac_address_t hw_addr; |
| 34 | bool use_random_hw_addr; |
| 35 | string host_if_name[64]; |
Pavel Kotucek | bbe3362 | 2016-12-20 13:19:48 +0100 | [diff] [blame] | 36 | }; |
| 37 | |
| 38 | /** \brief Create host-interface response |
| 39 | @param context - sender context, to match reply w/ request |
| 40 | @param retval - return value for request |
| 41 | */ |
| 42 | define af_packet_create_reply |
| 43 | { |
| 44 | u32 context; |
| 45 | i32 retval; |
Jakub Grajciar | 3b2db90 | 2019-08-26 11:25:52 +0200 | [diff] [blame] | 46 | vl_api_interface_index_t sw_if_index; |
Pavel Kotucek | bbe3362 | 2016-12-20 13:19:48 +0100 | [diff] [blame] | 47 | }; |
| 48 | |
| 49 | /** \brief Delete host-interface |
| 50 | @param client_index - opaque cookie to identify the sender |
| 51 | @param context - sender context, to match reply w/ request |
| 52 | @param host_if_name - interface name |
| 53 | */ |
Dave Barach | 11b8dbf | 2017-04-24 10:46:54 -0400 | [diff] [blame] | 54 | autoreply define af_packet_delete |
Pavel Kotucek | bbe3362 | 2016-12-20 13:19:48 +0100 | [diff] [blame] | 55 | { |
| 56 | u32 client_index; |
| 57 | u32 context; |
| 58 | |
Jakub Grajciar | 3b2db90 | 2019-08-26 11:25:52 +0200 | [diff] [blame] | 59 | string host_if_name[64]; |
Pavel Kotucek | bbe3362 | 2016-12-20 13:19:48 +0100 | [diff] [blame] | 60 | }; |
| 61 | |
Paul Vinciguerra | 97c998c | 2019-10-29 16:11:09 -0400 | [diff] [blame] | 62 | /** \brief Set l4 offload checksum calculation |
Jakub Grajciar | 92b0275 | 2017-10-20 13:37:28 +0200 | [diff] [blame] | 63 | @param client_index - opaque cookie to identify the sender |
| 64 | @param context - sender context, to match reply w/ request |
| 65 | */ |
| 66 | autoreply define af_packet_set_l4_cksum_offload |
| 67 | { |
| 68 | u32 client_index; |
| 69 | u32 context; |
Jakub Grajciar | 3b2db90 | 2019-08-26 11:25:52 +0200 | [diff] [blame] | 70 | |
| 71 | vl_api_interface_index_t sw_if_index; |
| 72 | bool set; |
Jakub Grajciar | 92b0275 | 2017-10-20 13:37:28 +0200 | [diff] [blame] | 73 | }; |
| 74 | |
Mohsin Kazmi | 04e0bb2 | 2018-05-28 18:55:37 +0200 | [diff] [blame] | 75 | /** \brief Dump af_packet interfaces request */ |
| 76 | define af_packet_dump |
| 77 | { |
| 78 | u32 client_index; |
| 79 | u32 context; |
| 80 | }; |
| 81 | |
| 82 | /** \brief Reply for af_packet dump request |
| 83 | @param sw_if_index - software index of af_packet interface |
| 84 | @param host_if_name - interface name |
| 85 | */ |
| 86 | define af_packet_details |
| 87 | { |
| 88 | u32 context; |
Jakub Grajciar | 3b2db90 | 2019-08-26 11:25:52 +0200 | [diff] [blame] | 89 | vl_api_interface_index_t sw_if_index; |
| 90 | string host_if_name[64]; |
Mohsin Kazmi | 04e0bb2 | 2018-05-28 18:55:37 +0200 | [diff] [blame] | 91 | }; |
| 92 | |
Pavel Kotucek | bbe3362 | 2016-12-20 13:19:48 +0100 | [diff] [blame] | 93 | /* |
| 94 | * Local Variables: |
| 95 | * eval: (c-set-style "gnu") |
| 96 | * End: |
| 97 | */ |