ip6-nd: add ip6-nd proxy
[vpp.git] / src / vnet / ip6-nd / ip6_nd.h
1 /*
2  *
3  * ip6_neighboor.h: ip6 neighbor structures
4  *
5  * Copyright (c) 2016 Cisco and/or its affiliates.
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at:
9  *
10  *     http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 #ifndef __IP6_ND_H__
20 #define __IP6_ND_H__
21
22 #include <vnet/ip/ip6_packet.h>
23
24 extern int ip6_nd_proxy_add (u32 sw_if_index, const ip6_address_t * addr);
25 extern int ip6_nd_proxy_del (u32 sw_if_index, const ip6_address_t * addr);
26 extern int ip6_nd_proxy_enable_disable (u32 sw_if_index, u8 enable);
27
28 #endif /* included_ip6_neighbor_h */
29
30 /*
31  * fd.io coding-style-patch-verification: ON
32  *
33  * Local Variables:
34  * eval: (c-set-style "gnu")
35  * End:
36  */