mirror of
https://passt.top/passt
synced 2024-11-06 04:41:10 +00:00
48582bf47f
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
13 lines
296 B
C
13 lines
296 B
C
/* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
* Copyright (c) 2021 Red Hat GmbH
|
|
* Author: Stefano Brivio <sbrivio@redhat.com>
|
|
*/
|
|
|
|
#ifndef NDP_H
|
|
#define NDP_H
|
|
|
|
int ndp(struct ctx *c, const struct icmp6hdr *ih,
|
|
const unsigned char *eh_source, const struct in6_addr *saddr);
|
|
|
|
#endif /* NDP_H */
|