summaryrefslogtreecommitdiffstats
path: root/9/platforms/android-18/arch-mips/usr/include/linux/netfilter_ipv4/ip_conntrack_tuple.h
blob: 0c96bafb08f38353f7c3a597f2b47b0774658491 (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.
 ***
 ****************************************************************************
 ****************************************************************************/
#ifndef _IP_CONNTRACK_TUPLE_H
#define _IP_CONNTRACK_TUPLE_H

#include <linux/types.h>
#include <linux/netfilter/nf_conntrack_tuple_common.h>

union ip_conntrack_manip_proto
{

 u_int16_t all;

 struct {
 __be16 port;
 } tcp;
 struct {
 u_int16_t port;
 } udp;
 struct {
 u_int16_t id;
 } icmp;
 struct {
 u_int16_t port;
 } sctp;
 struct {
 __be16 key;
 } gre;
};

struct ip_conntrack_manip
{
 u_int32_t ip;
 union ip_conntrack_manip_proto u;
};

struct ip_conntrack_tuple
{
 struct ip_conntrack_manip src;

 struct {
 u_int32_t ip;
 union {

 u_int16_t all;

 struct {
 u_int16_t port;
 } tcp;
 struct {
 u_int16_t port;
 } udp;
 struct {
 u_int8_t type, code;
 } icmp;
 struct {
 u_int16_t port;
 } sctp;
 struct {
 __be16 key;
 } gre;
 } u;

 u_int8_t protonum;

 u_int8_t dir;
 } dst;
};

#define IP_CT_TUPLE_U_BLANK(tuple)   do {   (tuple)->src.u.all = 0;   (tuple)->dst.u.all = 0;   } while (0)

#endif