Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/roland...
[deliverable/linux.git] / include / linux / netfilter_ipv4 / ipt_SAME.h
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
8 struct 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. */
16 struct nf_nat_range range[IPT_SAME_MAX_RANGE];
17 };
18
19 #endif /*_IPT_SAME_H*/
This page took 0.030363 seconds and 5 git commands to generate.