| .. | |||||
| ip6_tables.h | |||||
| ip6t_HL.h | |||||
| ip6t_LOG.h | |||||
| ip6t_NPT.h | |||||
| ip6t_REJECT.h | |||||
| ip6t_ah.h | |||||
| ip6t_frag.h | |||||
| ip6t_hl.h | |||||
| ip6t_ipv6header.h | |||||
| ip6t_mh.h | |||||
| ip6t_opts.h | |||||
| ip6t_rt.h | |||||
| ip6t_srh.h |
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ /* Hop Limit modification module for ip6tables * Maciej Soltysiak <[email protected]> * Based on HW's TTL module */ #ifndef _IP6T_HL_H #define _IP6T_HL_H #include <linux/types.h> enum { IP6T_HL_SET = 0, IP6T_HL_INC, IP6T_HL_DEC }; #define IP6T_HL_MAXMODE IP6T_HL_DEC struct ip6t_HL_info { __u8 mode; __u8 hop_limit; }; #endif
| .. | |||||
| ip6_tables.h | |||||
| ip6t_HL.h | |||||
| ip6t_LOG.h | |||||
| ip6t_NPT.h | |||||
| ip6t_REJECT.h | |||||
| ip6t_ah.h | |||||
| ip6t_frag.h | |||||
| ip6t_hl.h | |||||
| ip6t_ipv6header.h | |||||
| ip6t_mh.h | |||||
| ip6t_opts.h | |||||
| ip6t_rt.h | |||||
| ip6t_srh.h |