urpf: Unicast reverse Path Forwarding (plugin)
[vpp.git] / src / plugins / urpf / urpf.api
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
27 enum urpf_mode:u8
28 {
29   URPF_API_MODE_OFF,
30   URPF_API_MODE_LOOSE,
31   URPF_API_MODE_STRICT,
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 {
45   u32 client_index;
46   u32 context;
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  */