Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / include / linux / netfilter_ipv4 / ipt_TTL.h
blobee6611edc112e19dcc02bc46d80be0eae97fbc45
1 /* TTL modification module for IP tables
2 * (C) 2000 by Harald Welte <laforge@netfilter.org> */
4 #ifndef _IPT_TTL_H
5 #define _IPT_TTL_H
7 enum {
8 IPT_TTL_SET = 0,
9 IPT_TTL_INC,
10 IPT_TTL_DEC
13 #define IPT_TTL_MAXMODE IPT_TTL_DEC
15 struct ipt_TTL_info {
16 u_int8_t mode;
17 u_int8_t ttl;
21 #endif