nf_nat.h revision d7db594b8d1dab36b711bd887a9dd21675c87243
1/****************************************************************************
2 ****************************************************************************
3 ***
4 ***   This header was automatically generated from a Linux kernel header
5 ***   of the same name, to make information necessary for userspace to
6 ***   call into the kernel available to libc.  It contains only constants,
7 ***   structures, and macros generated from the original header, and thus,
8 ***   contains no copyrightable information.
9 ***
10 ***   To edit the content of this header, modify the corresponding
11 ***   source file (e.g. under external/kernel-headers/original/) then
12 ***   run bionic/libc/kernel/tools/update_all.py
13 ***
14 ***   Any manual change here will be lost the next time this script will
15 ***   be run. You've been warned!
16 ***
17 ****************************************************************************
18 ****************************************************************************/
19#ifndef _NETFILTER_NF_NAT_H
20#define _NETFILTER_NF_NAT_H
21#include <linux/netfilter.h>
22#include <linux/netfilter/nf_conntrack_tuple_common.h>
23/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
24#define NF_NAT_RANGE_MAP_IPS (1 << 0)
25#define NF_NAT_RANGE_PROTO_SPECIFIED (1 << 1)
26#define NF_NAT_RANGE_PROTO_RANDOM (1 << 2)
27#define NF_NAT_RANGE_PERSISTENT (1 << 3)
28/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
29#define NF_NAT_RANGE_PROTO_RANDOM_FULLY (1 << 4)
30#define NF_NAT_RANGE_PROTO_RANDOM_ALL (NF_NAT_RANGE_PROTO_RANDOM | NF_NAT_RANGE_PROTO_RANDOM_FULLY)
31#define NF_NAT_RANGE_MASK (NF_NAT_RANGE_MAP_IPS | NF_NAT_RANGE_PROTO_SPECIFIED | NF_NAT_RANGE_PROTO_RANDOM | NF_NAT_RANGE_PERSISTENT | NF_NAT_RANGE_PROTO_RANDOM_FULLY)
32struct nf_nat_ipv4_range {
33/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
34  unsigned int flags;
35  __be32 min_ip;
36  __be32 max_ip;
37  union nf_conntrack_man_proto min;
38/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
39  union nf_conntrack_man_proto max;
40};
41struct nf_nat_ipv4_multi_range_compat {
42  unsigned int rangesize;
43/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
44  struct nf_nat_ipv4_range range[1];
45};
46struct nf_nat_range {
47  unsigned int flags;
48/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
49  union nf_inet_addr min_addr;
50  union nf_inet_addr max_addr;
51  union nf_conntrack_man_proto min_proto;
52  union nf_conntrack_man_proto max_proto;
53/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
54};
55#endif
56