Neale Ranns | cbe25aa | 2019-09-30 10:53:31 +0000 | [diff] [blame] | 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); |
Mohsin Kazmi | cebb477 | 2021-04-07 19:50:35 +0200 | [diff] [blame] | 26 | extern int ip6_nd_proxy_enable_disable (u32 sw_if_index, u8 enable); |
Neale Ranns | cbe25aa | 2019-09-30 10:53:31 +0000 | [diff] [blame] | 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 | */ |