aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/netfilter_ipv4/ipt_state.h
blob: 5df37868933d9d91795dff8728f0b7a9c6000d81 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _IPT_STATE_H
#define _IPT_STATE_H

#define IPT_STATE_BIT(ctinfo) (1 << ((ctinfo)%IP_CT_IS_REPLY+1))
#define IPT_STATE_INVALID (1 << 0)

#define IPT_STATE_UNTRACKED (1 << (IP_CT_NUMBER + 1))

struct ipt_state_info
{
	unsigned int statemask;
};
#endif /*_IPT_STATE_H*/