ipt_TTL.h revision 435483c91cf16117fc2b864cb6994435ad669bc6
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
15enum {
16 IPT_TTL_SET = 0,
17 IPT_TTL_INC,
18 IPT_TTL_DEC
19};
20
21#define IPT_TTL_MAXMODE IPT_TTL_DEC
22
23struct ipt_TTL_info {
24 u_int8_t mode;
25 u_int8_t ttl;
26};
27
28#endif
29