FD.io VPP  v20.05-21-gb1500e9ff
Vector Packet Processing
urpf.api
Go to the documentation of this file.
1 /* Hey Emacs use -*- mode: C -*- */
2 /*
3  * Copyright (c) 2016 Cisco and/or its affiliates.
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 /** \file
18  This file defines the vpp control-plane API messages
19  used to control the URPF plugin
20 */
21 
22 option version = "1.0.0";
23 import "vnet/ip/ip_types.api";
24 import "vnet/fib/fib_types.api";
25 import "vnet/interface_types.api";
26 
28 {
32 };
33 
34 /**
35  * @brief Enable uRPF on a given interface in a given direction
36  * @param client_index - opaque cookie to identify the sender
37  * @param context - sender context, to match reply w/ request
38  * @param mode - Mode
39  * @param af - Address Family
40  * @param sw_if_index - Interface
41  * @param is_input - Direction.
42  */
43 autoreply define urpf_update
44 {
47  bool is_input[default = true];
48  vl_api_urpf_mode_t mode;
49  vl_api_address_family_t af;
50  vl_api_interface_index_t sw_if_index;
51 };
52 
53 /*
54  * fd.io coding-style-patch-verification: ON
55  *
56  * Local Variables:
57  * eval: (c-set-style "gnu")
58  * End:
59  */
vl_api_interface_index_t sw_if_index
Definition: urpf.api:50
unsigned char u8
Definition: types.h:56
unsigned int u32
Definition: types.h:88
vl_api_address_family_t af
Definition: urpf.api:49
vl_api_urpf_mode_t mode
Definition: urpf.api:48
urpf_mode
Definition: urpf.api:27
option version
Definition: urpf.api:22
void urpf_update(urpf_mode_t mode, u32 sw_if_index, ip_address_family_t af, vlib_dir_t dir)
Definition: urpf.c:99