Home | History | Annotate | Download | only in netfilter_ipv6
      1 /* Hop Limit modification module for ip6tables
      2  * Maciej Soltysiak <solt (at) dns.toxicfilms.tv>
      3  * Based on HW's TTL module */
      4 
      5 #ifndef _IP6T_HL_H
      6 #define _IP6T_HL_H
      7 
      8 #include <linux/types.h>
      9 
     10 enum {
     11 	IP6T_HL_SET = 0,
     12 	IP6T_HL_INC,
     13 	IP6T_HL_DEC
     14 };
     15 
     16 #define IP6T_HL_MAXMODE	IP6T_HL_DEC
     17 
     18 struct ip6t_HL_info {
     19 	__u8	mode;
     20 	__u8	hop_limit;
     21 };
     22 
     23 
     24 #endif
     25