FD.io VPP  v17.10-9-gd594711
Vector Packet Processing
af_packet.api
Go to the documentation of this file.
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 {
27 
28  u8 host_if_name[64];
29  u8 hw_addr[6];
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 {
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 autoreply define af_packet_delete
50 {
53 
54  u8 host_if_name[64];
55 };
56 
57 /*
58  * Local Variables:
59  * eval: (c-set-style "gnu")
60  * End:
61  */
int i32
Definition: types.h:81
unsigned int u32
Definition: types.h:88
unsigned char u8
Definition: types.h:56