repo.or.cz
/
zen-stable.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
hv: hyperv.h: remove unneeded forward declarations of structures
[zen-stable.git]
/
include
/
linux
/
netfilter
/
xt_state.h
blob
7b32de88661342f8fe032a018dbb2870ee11c703
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
9
struct
xt_state_info
{
10
unsigned int
statemask
;
11
};
12
#endif
/*_XT_STATE_H*/