]> bbs.cooldavid.org Git - net-next-2.6.git/blame - include/linux/netfilter/xt_state.h
net: cleanup include/linux
[net-next-2.6.git] / include / linux / netfilter / xt_state.h
CommitLineData
2e4e6a17
HW
1#ifndef _XT_STATE_H
2#define _XT_STATE_H
3
4#define XT_STATE_BIT(ctinfo) (1 << ((ctinfo)%IP_CT_IS_REPLY+1))
5#define XT_STATE_INVALID (1 << 0)
6
7#define XT_STATE_UNTRACKED (1 << (IP_CT_NUMBER + 1))
8
d94d9fee 9struct xt_state_info {
2e4e6a17
HW
10 unsigned int statemask;
11};
12#endif /*_XT_STATE_H*/