blob: 8dc698b999b9206499317b979115ff0e588adbed [file] [log] [blame]
Pavel Kotucek8b2b7942016-12-20 14:05:46 +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 netmap
17 @param client_index - opaque cookie to identify the sender
18 @param context - sender context, to match reply w/ request
19 @param netmap_if_name - interface name
20 @param hw_addr - interface MAC
21 @param use_random_hw_addr - use random generated MAC
22 @param is_pipe - is pipe
23 @param is_master - 0=slave, 1=master
24*/
Dave Barach11b8dbf2017-04-24 10:46:54 -040025autoreply define netmap_create
Pavel Kotucek8b2b7942016-12-20 14:05:46 +010026{
27 u32 client_index;
28 u32 context;
29
30 u8 netmap_if_name[64];
31 u8 hw_addr[6];
32 u8 use_random_hw_addr;
33 u8 is_pipe;
34 u8 is_master;
35};
36
Pavel Kotucek8b2b7942016-12-20 14:05:46 +010037/** \brief Delete netmap
38 @param client_index - opaque cookie to identify the sender
39 @param context - sender context, to match reply w/ request
40 @param netmap_if_name - interface name
41*/
Dave Barach11b8dbf2017-04-24 10:46:54 -040042autoreply define netmap_delete
Pavel Kotucek8b2b7942016-12-20 14:05:46 +010043{
44 u32 client_index;
45 u32 context;
46
47 u8 netmap_if_name[64];
48};
49
Pavel Kotucek8b2b7942016-12-20 14:05:46 +010050/*
51 * Local Variables:
52 * eval: (c-set-style "gnu")
53 * End:
54 */