Trivial: Clean up some typos.
[vpp.git] / src / plugins / gbp / gbp_recirc.h
1 /*
2  * Copyright (c) 2018 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 __GBP_RECIRC_H__
17 #define __GBP_RECIRC_H__
18
19 #include <plugins/gbp/gbp_types.h>
20 #include <vnet/fib/fib_types.h>
21
22 /**
23  * An Endpoint Group representation
24  */
25 typedef struct gpb_recirc_t_
26 {
27   /**
28    * EPG ID that packets will classify to when they arrive on this recirc
29    */
30   epg_id_t gr_epg;
31
32   /**
33    * FIB indices the EPG is mapped to
34    */
35   u32 gr_fib_index[FIB_PROTOCOL_IP_MAX];
36
37   /**
38    * Is the interface for packets post-NAT translation (i.e. ext)
39    * or pre-NAT translation (i.e. internal)
40    */
41   u8 gr_is_ext;
42
43   /**
44    */
45   u32 gr_sw_if_index;
46
47   /**
48    * The endpoint created to represent the reric interface
49    */
50   index_t gr_ep;
51 } gbp_recirc_t;
52
53 extern int gbp_recirc_add (u32 sw_if_index, epg_id_t epg_id, u8 is_ext);
54 extern void gbp_recirc_delete (u32 sw_if_index);
55
56 typedef int (*gbp_recirc_cb_t) (gbp_recirc_t * gbpe, void *ctx);
57 extern void gbp_recirc_walk (gbp_recirc_cb_t bgpe, void *ctx);
58
59 /**
60  * Data plane functions
61  */
62 extern gbp_recirc_t *gbp_recirc_pool;
63 extern index_t *gbp_recirc_db;
64
65 always_inline const gbp_recirc_t *
66 gbp_recirc_get (u32 sw_if_index)
67 {
68   return (pool_elt_at_index (gbp_recirc_pool, gbp_recirc_db[sw_if_index]));
69 }
70 #endif
71
72 /*
73  * fd.io coding-style-patch-verification: ON
74  *
75  * Local Variables:
76  * eval: (c-set-style "gnu")
77  * End:
78  */