blob: 4dab7440b4a8f979a04708d5e4bdb26f7d645ee0 [file] [log] [blame]
Neale Rannscbe25aa2019-09-30 10:53:31 +00001/*
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
24extern int ip6_nd_proxy_add (u32 sw_if_index, const ip6_address_t * addr);
25extern int ip6_nd_proxy_del (u32 sw_if_index, const ip6_address_t * addr);
26
27#endif /* included_ip6_neighbor_h */
28
29/*
30 * fd.io coding-style-patch-verification: ON
31 *
32 * Local Variables:
33 * eval: (c-set-style "gnu")
34 * End:
35 */