FD.io VPP
v21.06-3-gbb25fbf28
Vector Packet Processing
adl.api
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2020 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
option
version
=
"0.0.1"
;
17
18
import
"vnet/interface_types.api"
;
19
20
/** \brief adl: enable/disable filtration features on an interface
21
@param client_index - opaque cookie to identify the sender
22
@param context - sender context, to match reply w/ request
23
@param sw_if_inded - desired interface
24
@param enable_disable - 1 => enable, 0 => disable
25
*/
26
27
autoreply define
adl_interface_enable_disable
28
{
29
u32
client_index
;
30
u32
context
;
31
vl_api_interface_index_t
sw_if_index
;
32
bool
enable_disable
;
33
};
34
35
/** \brief adl: enable/disable allow list filtration features on an interface
36
Note: the supplied fib_id must match in order to remove the feature!
37
38
@param client_index - opaque cookie to identify the sender
39
@param context - sender context, to match reply w/ request
40
@param sw_if_index - interface handle, physical interfaces only
41
@param fib_id - fib identifier for the allow/deny fib
42
@param ip4 - 1 => enable ip4 filtration, 0=> disable ip4 filtration
43
@param ip6 - 1 => enable ip6 filtration, 0=> disable ip6 filtration
44
@param default_adl - 1 => enable non-ip4, non-ip6 filtration
45
0 => disable it
46
*/
47
48
autoreply define
adl_allowlist_enable_disable
49
{
50
u32
client_index
;
51
u32
context
;
52
vl_api_interface_index_t
sw_if_index
;
53
u32
fib_id
;
54
bool
ip4
;
55
bool
ip6
;
56
bool
default_adl
;
57
};
58
59
/*
60
* Local Variables:
61
* eval: (c-set-style "gnu")
62
* End:
63
*/
vl_api_adl_interface_enable_disable_t::client_index
u32 client_index
Definition:
adl.api:29
vl_api_adl_allowlist_enable_disable_t::sw_if_index
vl_api_interface_index_t sw_if_index
Definition:
adl.api:52
vl_api_adl_allowlist_enable_disable_t::ip4
bool ip4
Definition:
adl.api:54
vl_api_adl_allowlist_enable_disable_t::fib_id
u32 fib_id
Definition:
adl.api:53
vl_api_adl_allowlist_enable_disable_t::client_index
u32 client_index
Definition:
adl.api:50
vl_api_adl_interface_enable_disable_t::context
u32 context
Definition:
adl.api:30
vl_api_adl_interface_enable_disable_t::sw_if_index
vl_api_interface_index_t sw_if_index
Definition:
adl.api:31
vl_api_adl_allowlist_enable_disable_t::context
u32 context
Definition:
adl.api:51
adl_allowlist_enable_disable
int adl_allowlist_enable_disable(adl_allowlist_enable_disable_args_t *a)
Definition:
adl.c:233
vl_api_adl_interface_enable_disable_t::enable_disable
bool enable_disable
Definition:
adl.api:32
vl_api_adl_allowlist_enable_disable_t
adl: enable/disable allow list filtration features on an interface Note: the supplied fib_id must mat...
Definition:
adl.api:48
adl_interface_enable_disable
int adl_interface_enable_disable(u32 sw_if_index, int enable_disable)
Definition:
adl.c:169
u32
unsigned int u32
Definition:
types.h:88
version
option version
Definition:
adl.api:16
vl_api_adl_allowlist_enable_disable_t::default_adl
bool default_adl
Definition:
adl.api:56
vl_api_adl_allowlist_enable_disable_t::ip6
bool ip6
Definition:
adl.api:55
vl_api_adl_interface_enable_disable_t
adl: enable/disable filtration features on an interface
Definition:
adl.api:27
src
plugins
adl
adl.api
Generated on Sat Jan 8 2022 10:03:30 for FD.io VPP by
1.8.17