1a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich/****************************************************************************
2a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ****************************************************************************
3a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***
4a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   This header was automatically generated from a Linux kernel header
5a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   of the same name, to make information necessary for userspace to
6a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   call into the kernel available to libc.  It contains only constants,
7a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   structures, and macros generated from the original header, and thus,
8a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   contains no copyrightable information.
9a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***
10a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   To edit the content of this header, modify the corresponding
11a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   source file (e.g. under external/kernel-headers/original/) then
12a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   run bionic/libc/kernel/tools/update_all.py
13a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***
14a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   Any manual change here will be lost the next time this script will
15a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   be run. You've been warned!
16a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***
17a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ****************************************************************************
18a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ****************************************************************************/
19655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#ifndef _XT_CT_H
20655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define _XT_CT_H
21655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#include <linux/types.h>
22655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Chengenum {
23d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  XT_CT_NOTRACK = 1 << 0,
24d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  XT_CT_NOTRACK_ALIAS = 1 << 1,
2505d08e9716b5974d6ed08973f44930804890b902Christopher Ferris  XT_CT_ZONE_DIR_ORIG = 1 << 2,
2605d08e9716b5974d6ed08973f44930804890b902Christopher Ferris  XT_CT_ZONE_DIR_REPL = 1 << 3,
2705d08e9716b5974d6ed08973f44930804890b902Christopher Ferris  XT_CT_ZONE_MARK = 1 << 4,
2805d08e9716b5974d6ed08973f44930804890b902Christopher Ferris  XT_CT_MASK = XT_CT_NOTRACK | XT_CT_NOTRACK_ALIAS | XT_CT_ZONE_DIR_ORIG | XT_CT_ZONE_DIR_REPL | XT_CT_ZONE_MARK,
2905d08e9716b5974d6ed08973f44930804890b902Christopher Ferris};
30655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Chengstruct xt_ct_target_info {
31d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u16 flags;
32d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u16 zone;
33d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u32 ct_events;
34d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u32 exp_events;
35d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  char helper[16];
36d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  struct nf_conn * ct __attribute__((aligned(8)));
37655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng};
38655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Chengstruct xt_ct_target_info_v1 {
39d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u16 flags;
40d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u16 zone;
41d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u32 ct_events;
42d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u32 exp_events;
43d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  char helper[16];
44d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  char timeout[32];
45d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  struct nf_conn * ct __attribute__((aligned(8)));
46655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng};
47a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich#endif
48