FD.io VPP  v18.04-17-g3a0d853
Vector Packet Processing
in_out_acl.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015 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 __included_vnet_in_out_acl_h__
17 #define __included_vnet_in_out_acl_h__
18 
19 #include <vlib/vlib.h>
20 #include <vnet/vnet.h>
22 
23 typedef enum
24 {
28 
29 typedef enum
30 {
36 
37 typedef enum
38 {
43 
44 typedef struct
45 {
46 
47  /* classifier table vectors */
48  u32
49  * classify_table_index_by_sw_if_index[IN_OUT_ACL_N_TABLE_GROUPS]
51 
52  /* convenience variables */
59 
61 
62 int vnet_set_in_out_acl_intfc (vlib_main_t * vm, u32 sw_if_index,
63  u32 ip4_table_index,
64  u32 ip6_table_index,
65  u32 l2_table_index, u32 is_add, u32 is_output);
66 
67 int vnet_set_input_acl_intfc (vlib_main_t * vm, u32 sw_if_index,
68  u32 ip4_table_index,
69  u32 ip6_table_index,
70  u32 l2_table_index, u32 is_add);
71 
72 int vnet_set_output_acl_intfc (vlib_main_t * vm, u32 sw_if_index,
73  u32 ip4_table_index,
74  u32 ip6_table_index,
75  u32 l2_table_index, u32 is_add);
76 
77 #endif /* __included_vnet_in_out_acl_h__ */
78 
79 /*
80  * fd.io coding-style-patch-verification: ON
81  *
82  * Local Variables:
83  * eval: (c-set-style "gnu")
84  * End:
85  */
vnet_main_t * vnet_main
Definition: in_out_acl.h:54
int vnet_set_output_acl_intfc(vlib_main_t *vm, u32 sw_if_index, u32 ip4_table_index, u32 ip6_table_index, u32 l2_table_index, u32 is_add)
Definition: in_out_acl.c:137
int vnet_set_input_acl_intfc(vlib_main_t *vm, u32 sw_if_index, u32 ip4_table_index, u32 ip6_table_index, u32 l2_table_index, u32 is_add)
Definition: in_out_acl.c:127
vlib_main_t * vm
Definition: buffer.c:294
int vnet_set_in_out_acl_intfc(vlib_main_t *vm, u32 sw_if_index, u32 ip4_table_index, u32 ip6_table_index, u32 l2_table_index, u32 is_add, u32 is_output)
Definition: in_out_acl.c:68
vlib_main_t * vlib_main
Definition: in_out_acl.h:53
in_out_acl_table_id_t
Definition: in_out_acl.h:29
struct _vnet_classify_main vnet_classify_main_t
Definition: vnet_classify.h:70
unsigned int u32
Definition: types.h:88
vnet_classify_main_t * vnet_classify_main
Definition: in_out_acl.h:55
in_out_acl_main_t in_out_acl_main
Definition: in_out_acl.c:19
acl_next_index_t
Definition: in_out_acl.h:23
in_out_acl_table_group_id_t
Definition: in_out_acl.h:37