vrrp: fix vrrp_garp_or_na_send()'s memory leak
[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 typedef struct
38 {
39   urpf_mode_t mode;
40   u32 fib_index;
41   u8 fib_index_is_custom;
42 } urpf_data_t;
43
44 extern urpf_data_t *urpf_cfgs[N_AF][VLIB_N_DIR];
45
46 extern int urpf_update (urpf_mode_t mode, u32 sw_if_index,
47                         ip_address_family_t af, vlib_dir_t dir, u32 table_id);
48
49 #endif
50
51 /*
52  * fd.io coding-style-patch-verification: ON
53  *
54  * Local Variables:
55  * eval: (c-set-style "gnu")
56  * End:
57  */