blob: 8d40ad60c02582b53ca37eb5be23ed513c211e76 [file] [log] [blame]
Pavel Kotucekbbe33622016-12-20 13:19:48 +01001/*
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*/
23define 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*/
37define 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 Barach11b8dbf2017-04-24 10:46:54 -040049autoreply define af_packet_delete
Pavel Kotucekbbe33622016-12-20 13:19:48 +010050{
51 u32 client_index;
52 u32 context;
53
54 u8 host_if_name[64];
55};
56
Pavel Kotucekbbe33622016-12-20 13:19:48 +010057/*
58 * Local Variables:
59 * eval: (c-set-style "gnu")
60 * End:
61 */