From c1b62f09259cdfa618cf63032de67689c991bd3e Mon Sep 17 00:00:00 2001 From: Daniel Borkmann Date: Mon, 24 Aug 2015 17:38:15 +0200 Subject: libxt_CT: add support for recently introduced zone options This adds the user space front-end and man-page bits for the additional zone features (direction, mark) of the CT target. Signed-off-by: Daniel Borkmann Signed-off-by: Pablo Neira Ayuso --- include/linux/netfilter/xt_CT.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include/linux') diff --git a/include/linux/netfilter/xt_CT.h b/include/linux/netfilter/xt_CT.h index 54528fdd..c3907db5 100644 --- a/include/linux/netfilter/xt_CT.h +++ b/include/linux/netfilter/xt_CT.h @@ -6,6 +6,9 @@ enum { XT_CT_NOTRACK = 1 << 0, XT_CT_NOTRACK_ALIAS = 1 << 1, + XT_CT_ZONE_DIR_ORIG = 1 << 2, + XT_CT_ZONE_DIR_REPL = 1 << 3, + XT_CT_ZONE_MARK = 1 << 4, }; struct xt_ct_target_info { -- cgit v1.2.3