FD.io VPP
v21.06-3-gbb25fbf28
Vector Packet Processing
mdata.api
Go to the documentation of this file.
1
/*
2
* mdata.api - binary API skeleton
3
*
4
* Copyright (c) <current-year> <your-organization>
5
* Licensed under the Apache License, Version 2.0 (the "License");
6
* you may not use this file except in compliance with the License.
7
* You may obtain a copy of the License at:
8
*
9
* http://www.apache.org/licenses/LICENSE-2.0
10
*
11
* Unless required by applicable law or agreed to in writing, software
12
* distributed under the License is distributed on an "AS IS" BASIS,
13
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
* See the License for the specific language governing permissions and
15
* limitations under the License.
16
*/
17
18
/**
19
* @file mdata.api
20
* @brief VPP control-plane API messages.
21
*
22
* This file defines VPP control-plane binary API messages which are generally
23
* called through a shared memory interface.
24
*/
25
26
/* Version and type recitations */
27
28
option
version
=
"0.1.0"
;
29
import
"vnet/interface_types.api"
;
30
31
/** @brief API to enable / disable mdata on an interface
32
@param client_index - opaque cookie to identify the sender
33
@param context - sender context, to match reply w/ request
34
@param enable_disable - 1 to enable, 0 to disable the feature
35
*/
36
37
autoreply define
mdata_enable_disable
{
38
/* Client identifier, set from api_main.my_client_index */
39
u32
client_index
;
40
41
/* Arbitrary context, so client can match reply to request */
42
u32
context
;
43
44
/* Enable / disable the feature */
45
bool
enable_disable
;
46
};
vl_api_mdata_enable_disable_t::enable_disable
bool enable_disable
Definition:
mdata.api:45
version
option version
Definition:
mdata.api:28
vl_api_mdata_enable_disable_t::context
u32 context
Definition:
mdata.api:42
vl_api_mdata_enable_disable_t::client_index
u32 client_index
Definition:
mdata.api:39
u32
unsigned int u32
Definition:
types.h:88
mdata_enable_disable
int mdata_enable_disable(mdata_main_t *mmp, int enable_disable)
Definition:
mdata.c:138
vl_api_mdata_enable_disable_t
API to enable / disable mdata on an interface.
Definition:
mdata.api:37
src
plugins
mdata
mdata.api
Generated on Sat Jan 8 2022 10:04:09 for FD.io VPP by
1.8.17