Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6
[deliverable/linux.git] / include / linux / netfilter_ipv4 / ipt_SAME.h
CommitLineData
1da177e4
LT
1#ifndef _IPT_SAME_H
2#define _IPT_SAME_H
3
4#define IPT_SAME_MAX_RANGE 10
5
6#define IPT_SAME_NODST 0x01
7
8struct ipt_same_info
9{
10 unsigned char info;
11 u_int32_t rangesize;
12 u_int32_t ipnum;
13 u_int32_t *iparray;
14
15 /* hangs off end. */
587aa641 16 struct nf_nat_range range[IPT_SAME_MAX_RANGE];
1da177e4
LT
17};
18
19#endif /*_IPT_SAME_H*/
This page took 0.713636 seconds and 5 git commands to generate.