2021-10-19 12:43:28 +02:00
|
|
|
/* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
* Copyright (c) 2021 Red Hat GmbH
|
|
|
|
* Author: Stefano Brivio <sbrivio@redhat.com>
|
|
|
|
*/
|
|
|
|
|
2022-03-26 00:05:31 +01:00
|
|
|
#ifndef NDP_H
|
|
|
|
#define NDP_H
|
|
|
|
|
2022-03-26 07:23:21 +01:00
|
|
|
int ndp(struct ctx *c, const struct icmp6hdr *ih,
|
|
|
|
const unsigned char *eh_source, const struct in6_addr *saddr);
|
2022-03-26 00:05:31 +01:00
|
|
|
|
|
|
|
#endif /* NDP_H */
|