dpdk: Add support for Mellanox ConnectX-4 devices
[vpp.git] / src / vnet / devices / af_packet / af_packet.api
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 */
49 define af_packet_delete
50 {
51   u32 client_index;
52   u32 context;
53
54   u8 host_if_name[64];
55 };
56
57 /** \brief Delete host-interface response
58     @param context - sender context, to match reply w/ request
59     @param retval - return value for request
60 */
61 define af_packet_delete_reply
62 {
63   u32 context;
64   i32 retval;
65 };
66
67 /*
68  * Local Variables:
69  * eval: (c-set-style "gnu")
70  * End:
71  */