summaryrefslogtreecommitdiff
path: root/platform/sysroot/usr/include/linux/netfilter/xt_set.h
blob: 5374159b2a22ff7e210b86cf6f17f1aef89d8ec8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/****************************************************************************
 ****************************************************************************
 ***
 ***   This header was automatically generated from a Linux kernel header
 ***   of the same name, to make information necessary for userspace to
 ***   call into the kernel available to libc.  It contains only constants,
 ***   structures, and macros generated from the original header, and thus,
 ***   contains no copyrightable information.
 ***
 ***   To edit the content of this header, modify the corresponding
 ***   source file (e.g. under external/kernel-headers/original/) then
 ***   run bionic/libc/kernel/tools/update_all.py
 ***
 ***   Any manual change here will be lost the next time this script will
 ***   be run. You've been warned!
 ***
 ****************************************************************************
 ****************************************************************************/
#ifndef _XT_SET_H
#define _XT_SET_H
#include <linux/types.h>
#include <linux/netfilter/ipset/ip_set.h>
#define IPSET_SRC 0x01
#define IPSET_DST 0x02
#define IPSET_MATCH_INV 0x04
struct xt_set_info_v0 {
  ip_set_id_t index;
  union {
    __u32 flags[IPSET_DIM_MAX + 1];
    struct {
      __u32 __flags[IPSET_DIM_MAX];
      __u8 dim;
      __u8 flags;
    } compat;
  } u;
};
struct xt_set_info_match_v0 {
  struct xt_set_info_v0 match_set;
};
struct xt_set_info_target_v0 {
  struct xt_set_info_v0 add_set;
  struct xt_set_info_v0 del_set;
};
struct xt_set_info {
  ip_set_id_t index;
  __u8 dim;
  __u8 flags;
};
struct xt_set_info_match_v1 {
  struct xt_set_info match_set;
};
struct xt_set_info_target_v1 {
  struct xt_set_info add_set;
  struct xt_set_info del_set;
};
struct xt_set_info_target_v2 {
  struct xt_set_info add_set;
  struct xt_set_info del_set;
  __u32 flags;
  __u32 timeout;
};
struct xt_set_info_match_v3 {
  struct xt_set_info match_set;
  struct ip_set_counter_match0 packets;
  struct ip_set_counter_match0 bytes;
  __u32 flags;
};
struct xt_set_info_target_v3 {
  struct xt_set_info add_set;
  struct xt_set_info del_set;
  struct xt_set_info map_set;
  __u32 flags;
  __u32 timeout;
};
struct xt_set_info_match_v4 {
  struct xt_set_info match_set;
  struct ip_set_counter_match packets;
  struct ip_set_counter_match bytes;
  __u32 flags;
};
#endif