/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ /* ipv6header match - matches IPv6 packets based on whether they contain certain headers */ /* Original idea: Brad Chapman * Rewritten by: Andras Kis-Szabo <[email protected]> */ #ifndef __IPV6HEADER_H #define __IPV6HEADER_H #include <linux/types.h> struct ip6t_ipv6header_info { … }; #define MASK_HOPOPTS … #define MASK_DSTOPTS … #define MASK_ROUTING … #define MASK_FRAGMENT … #define MASK_AH … #define MASK_ESP … #define MASK_NONE … #define MASK_PROTO … #endif /* __IPV6HEADER_H */