]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - include/linux/netfilter_ipv4/ipt_ttl.h
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu
[mirror_ubuntu-zesty-kernel.git] / include / linux / netfilter_ipv4 / ipt_ttl.h
CommitLineData
1da177e4
LT
1/* IP tables module for matching the value of the TTL
2 * (C) 2000 by Harald Welte <laforge@gnumonks.org> */
3
4#ifndef _IPT_TTL_H
5#define _IPT_TTL_H
6
7enum {
8 IPT_TTL_EQ = 0, /* equals */
9 IPT_TTL_NE, /* not equals */
10 IPT_TTL_LT, /* less than */
11 IPT_TTL_GT, /* greater than */
12};
13
14
15struct ipt_ttl_info {
16 u_int8_t mode;
17 u_int8_t ttl;
18};
19
20
21#endif