staging: gma500: enable the 2D op stuff
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / linux / netfilter_ipv4 / ipt_ttl.h
blob37bee44424860f19e801f1d431b93c9facf3e1cf
1 /* IP tables module for matching the value of the TTL
2 * (C) 2000 by Harald Welte <laforge@gnumonks.org> */
4 #ifndef _IPT_TTL_H
5 #define _IPT_TTL_H
7 #include <linux/types.h>
9 enum {
10 IPT_TTL_EQ = 0, /* equals */
11 IPT_TTL_NE, /* not equals */
12 IPT_TTL_LT, /* less than */
13 IPT_TTL_GT, /* greater than */
17 struct ipt_ttl_info {
18 __u8 mode;
19 __u8 ttl;
23 #endif