Linux-2.6.12-rc2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / linux / netfilter_ipv4 / ipt_ttl.h
blobee24fd86a3aaee2c4310921bc860970dd75b3e91
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 enum {
8 IPT_TTL_EQ = 0, /* equals */
9 IPT_TTL_NE, /* not equals */
10 IPT_TTL_LT, /* less than */
11 IPT_TTL_GT, /* greater than */
15 struct ipt_ttl_info {
16 u_int8_t mode;
17 u_int8_t ttl;
21 #endif