Home | History | Annotate | Download | only in linux
      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 _UAPI__LINUX_IP_NETFILTER_H
     20 #define _UAPI__LINUX_IP_NETFILTER_H
     21 #include <linux/netfilter.h>
     22 #include <limits.h>
     23 #define NFC_IP_SRC 0x0001
     24 #define NFC_IP_DST 0x0002
     25 #define NFC_IP_IF_IN 0x0004
     26 #define NFC_IP_IF_OUT 0x0008
     27 #define NFC_IP_TOS 0x0010
     28 #define NFC_IP_PROTO 0x0020
     29 #define NFC_IP_OPTIONS 0x0040
     30 #define NFC_IP_FRAG 0x0080
     31 #define NFC_IP_TCPFLAGS 0x0100
     32 #define NFC_IP_SRC_PT 0x0200
     33 #define NFC_IP_DST_PT 0x0400
     34 #define NFC_IP_PROTO_UNKNOWN 0x2000
     35 #define NF_IP_PRE_ROUTING 0
     36 #define NF_IP_LOCAL_IN 1
     37 #define NF_IP_FORWARD 2
     38 #define NF_IP_LOCAL_OUT 3
     39 #define NF_IP_POST_ROUTING 4
     40 #define NF_IP_NUMHOOKS 5
     41 enum nf_ip_hook_priorities {
     42   NF_IP_PRI_FIRST = INT_MIN,
     43   NF_IP_PRI_CONNTRACK_DEFRAG = - 400,
     44   NF_IP_PRI_RAW = - 300,
     45   NF_IP_PRI_SELINUX_FIRST = - 225,
     46   NF_IP_PRI_CONNTRACK = - 200,
     47   NF_IP_PRI_MANGLE = - 150,
     48   NF_IP_PRI_NAT_DST = - 100,
     49   NF_IP_PRI_FILTER = 0,
     50   NF_IP_PRI_SECURITY = 50,
     51   NF_IP_PRI_NAT_SRC = 100,
     52   NF_IP_PRI_SELINUX_LAST = 225,
     53   NF_IP_PRI_CONNTRACK_HELPER = 300,
     54   NF_IP_PRI_CONNTRACK_CONFIRM = INT_MAX,
     55   NF_IP_PRI_LAST = INT_MAX,
     56 };
     57 #define SO_ORIGINAL_DST 80
     58 #endif
     59