Merge branch 'header-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6/cjktty.git] / include / linux / netfilter / nf_conntrack_tuple_common.h
blob8e145f0d61cb1c7aed4c7f23476086c16f9b99af
1 #ifndef _NF_CONNTRACK_TUPLE_COMMON_H
2 #define _NF_CONNTRACK_TUPLE_COMMON_H
4 enum ip_conntrack_dir
6 IP_CT_DIR_ORIGINAL,
7 IP_CT_DIR_REPLY,
8 IP_CT_DIR_MAX
9 };
11 #define CTINFO2DIR(ctinfo) ((ctinfo) >= IP_CT_IS_REPLY ? IP_CT_DIR_REPLY : IP_CT_DIR_ORIGINAL)
13 #endif /* _NF_CONNTRACK_TUPLE_COMMON_H */