Linux Kernel
3.7.1
|
#include <linux/types.h>
#include <linux/netfilter.h>
#include <linux/netfilter/nf_conntrack_tuple_common.h>
Go to the source code of this file.
Data Structures | |
struct | xt_conntrack_mtinfo1 |
struct | xt_conntrack_mtinfo2 |
struct | xt_conntrack_mtinfo3 |
Macros | |
#define | XT_CONNTRACK_STATE_BIT(ctinfo) (1 << ((ctinfo)%IP_CT_IS_REPLY+1)) |
#define | XT_CONNTRACK_STATE_INVALID (1 << 0) |
#define | XT_CONNTRACK_STATE_SNAT (1 << (IP_CT_NUMBER + 1)) |
#define | XT_CONNTRACK_STATE_DNAT (1 << (IP_CT_NUMBER + 2)) |
#define | XT_CONNTRACK_STATE_UNTRACKED (1 << (IP_CT_NUMBER + 3)) |
Enumerations | |
enum | { XT_CONNTRACK_STATE = 1 << 0, XT_CONNTRACK_PROTO = 1 << 1, XT_CONNTRACK_ORIGSRC = 1 << 2, XT_CONNTRACK_ORIGDST = 1 << 3, XT_CONNTRACK_REPLSRC = 1 << 4, XT_CONNTRACK_REPLDST = 1 << 5, XT_CONNTRACK_STATUS = 1 << 6, XT_CONNTRACK_EXPIRES = 1 << 7, XT_CONNTRACK_ORIGSRC_PORT = 1 << 8, XT_CONNTRACK_ORIGDST_PORT = 1 << 9, XT_CONNTRACK_REPLSRC_PORT = 1 << 10, XT_CONNTRACK_REPLDST_PORT = 1 << 11, XT_CONNTRACK_DIRECTION = 1 << 12 } |
#define XT_CONNTRACK_STATE_BIT | ( | ctinfo | ) | (1 << ((ctinfo)%IP_CT_IS_REPLY+1)) |
Definition at line 12 of file xt_conntrack.h.
#define XT_CONNTRACK_STATE_DNAT (1 << (IP_CT_NUMBER + 2)) |
Definition at line 16 of file xt_conntrack.h.
#define XT_CONNTRACK_STATE_INVALID (1 << 0) |
Definition at line 13 of file xt_conntrack.h.
#define XT_CONNTRACK_STATE_SNAT (1 << (IP_CT_NUMBER + 1)) |
Definition at line 15 of file xt_conntrack.h.
#define XT_CONNTRACK_STATE_UNTRACKED (1 << (IP_CT_NUMBER + 3)) |
Definition at line 17 of file xt_conntrack.h.
anonymous enum |
Definition at line 20 of file xt_conntrack.h.