urpf: Unicast reverse Path Forwarding (plugin)
[vpp.git] / src / plugins / urpf / urpf.h
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 #ifndef __URPF_H__
17 #define __URPF_H__
18
19 #include <vnet/ip/ip_types.h>
20
21 #define foreach_urpf_mode \
22   _(OFF, "off")           \
23   _(LOOSE, "loose")       \
24   _(STRICT, "strict")     \
25
26 typedef enum urpf_mode_t_
27 {
28 #define _(a,b) URPF_MODE_##a,
29   foreach_urpf_mode
30 #undef _
31 } __clib_packed urpf_mode_t;
32
33 #define URPF_N_MODES (URPF_MODE_STRICT+1)
34
35 extern u8 *format_urpf_mode (u8 * s, va_list * a);
36
37 extern void urpf_update (urpf_mode_t mode,
38                          u32 sw_if_index,
39                          ip_address_family_t af, vlib_dir_t dir);
40
41
42 #endif
43
44 /*
45  * fd.io coding-style-patch-verification: ON
46  *
47  * Local Variables:
48  * eval: (c-set-style "gnu")
49  * End:
50  */