Home | History | Annotate | Download | only in netfilter_ipv4
      1 /****************************************************************************
      2  ****************************************************************************
      3  ***
      4  ***   This header was automatically generated from a Linux kernel header
      5  ***   of the same name, to make information necessary for userspace to
      6  ***   call into the kernel available to libc.  It contains only constants,
      7  ***   structures, and macros generated from the original header, and thus,
      8  ***   contains no copyrightable information.
      9  ***
     10  ****************************************************************************
     11  ****************************************************************************/
     12 #ifndef _IPT_TTL_H
     13 #define _IPT_TTL_H
     14 
     15 enum {
     16  IPT_TTL_SET = 0,
     17  IPT_TTL_INC,
     18  IPT_TTL_DEC
     19 };
     20 
     21 #define IPT_TTL_MAXMODE IPT_TTL_DEC
     22 
     23 struct ipt_TTL_info {
     24  u_int8_t mode;
     25  u_int8_t ttl;
     26 };
     27 
     28 #endif
     29