netfilter.h revision 654325de026a2ca5b76b8b40e576c959d8211fdc
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 __LINUX_NETFILTER_H
20#define __LINUX_NETFILTER_H
21#include <linux/types.h>
22#include <linux/compiler.h>
23/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
24#define NF_DROP 0
25#define NF_ACCEPT 1
26#define NF_STOLEN 2
27#define NF_QUEUE 3
28/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
29#define NF_REPEAT 4
30#define NF_STOP 5
31#define NF_MAX_VERDICT NF_STOP
32#define NF_VERDICT_MASK 0x0000ffff
33/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
34#define NF_VERDICT_BITS 16
35#define NF_VERDICT_QMASK 0xffff0000
36#define NF_VERDICT_QBITS 16
37#define NF_QUEUE_NR(x) ((((x) << NF_VERDICT_BITS) & NF_VERDICT_QMASK) | NF_QUEUE)
38/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
39#define NFC_UNKNOWN 0x4000
40#define NFC_ALTERED 0x8000
41enum nf_inet_hooks {
42 NF_INET_PRE_ROUTING,
43/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
44 NF_INET_LOCAL_IN,
45 NF_INET_FORWARD,
46 NF_INET_LOCAL_OUT,
47 NF_INET_POST_ROUTING,
48/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
49 NF_INET_NUMHOOKS
50};
51enum {
52 NFPROTO_UNSPEC = 0,
53/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
54 NFPROTO_IPV4 = 2,
55 NFPROTO_ARP = 3,
56 NFPROTO_BRIDGE = 7,
57 NFPROTO_IPV6 = 10,
58/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
59 NFPROTO_DECNET = 12,
60 NFPROTO_NUMPROTO,
61};
62union nf_inet_addr {
63/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
64 __u32 all[4];
65 __be32 ip;
66 __be32 ip6[4];
67 struct in_addr in;
68/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
69 struct in6_addr in6;
70};
71#endif
72