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 | |
| 16 | /** \brief Create host-interface |
| 17 | @param client_index - opaque cookie to identify the sender |
| 18 | @param context - sender context, to match reply w/ request |
| 19 | @param host_if_name - interface name |
| 20 | @param hw_addr - interface MAC |
| 21 | @param use_random_hw_addr - use random generated MAC |
| 22 | */ |
| 23 | define af_packet_create |
| 24 | { |
| 25 | u32 client_index; |
| 26 | u32 context; |
| 27 | |
| 28 | u8 host_if_name[64]; |
| 29 | u8 hw_addr[6]; |
| 30 | u8 use_random_hw_addr; |
| 31 | }; |
| 32 | |
| 33 | /** \brief Create host-interface response |
| 34 | @param context - sender context, to match reply w/ request |
| 35 | @param retval - return value for request |
| 36 | */ |
| 37 | define af_packet_create_reply |
| 38 | { |
| 39 | u32 context; |
| 40 | i32 retval; |
| 41 | u32 sw_if_index; |
| 42 | }; |
| 43 | |
| 44 | /** \brief Delete host-interface |
| 45 | @param client_index - opaque cookie to identify the sender |
| 46 | @param context - sender context, to match reply w/ request |
| 47 | @param host_if_name - interface name |
| 48 | */ |
Dave Barach | 11b8dbf | 2017-04-24 10:46:54 -0400 | [diff] [blame^] | 49 | autoreply define af_packet_delete |
Pavel Kotucek | bbe3362 | 2016-12-20 13:19:48 +0100 | [diff] [blame] | 50 | { |
| 51 | u32 client_index; |
| 52 | u32 context; |
| 53 | |
| 54 | u8 host_if_name[64]; |
| 55 | }; |
| 56 | |
Pavel Kotucek | bbe3362 | 2016-12-20 13:19:48 +0100 | [diff] [blame] | 57 | /* |
| 58 | * Local Variables: |
| 59 | * eval: (c-set-style "gnu") |
| 60 | * End: |
| 61 | */ |