ipsec: Support MPLS over IPSec[46] interface
[vpp.git] / src / vnet / ip / ip_container_proxy.h
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_ip_container_proxy_h
17 #define included_ip_container_proxy_h
18
19 #include <vnet/fib/fib_types.h>
20
21 typedef struct _vnet_ip_container_proxy_args
22 {
23   fib_prefix_t prefix;
24   u32 sw_if_index;
25   u8 is_add;
26 } vnet_ip_container_proxy_args_t;
27
28 clib_error_t *vnet_ip_container_proxy_add_del (vnet_ip_container_proxy_args_t
29                                                * args);
30
31 typedef int (*ip_container_proxy_cb_t) (const fib_prefix_t * pfx,
32                                         u32 sw_if_index, void *ctx);
33 void ip_container_proxy_walk (ip_container_proxy_cb_t cb, void *ctx);
34
35 #endif
36
37 /*
38  * fd.io coding-style-patch-verification: ON
39  *
40  * Local Variables:
41  * eval: (c-set-style "gnu")
42  * End:
43  */