From f7824f63ae45c4979abe95fd3e7702eacd63bec1 Mon Sep 17 00:00:00 2001 From: Pablo Neira Ayuso Date: Sun, 5 Feb 2012 21:03:43 +0100 Subject: conntrackd: add support expectation class synchronization This patch adds support for synchronizing the expectation class. Signed-off-by: Pablo Neira Ayuso --- src/build.c | 2 ++ src/parse.c | 5 +++++ 2 files changed, 7 insertions(+) (limited to 'src') diff --git a/src/build.c b/src/build.c index 3193884..b845e0b 100644 --- a/src/build.c +++ b/src/build.c @@ -322,4 +322,6 @@ void exp2msg(const struct nf_expect *exp, struct nethdr *n) exp_build_u32(exp, ATTR_EXP_TIMEOUT, n, NTA_EXP_TIMEOUT); exp_build_u32(exp, ATTR_EXP_FLAGS, n, NTA_EXP_FLAGS); + if (nfexp_attr_is_set(exp, ATTR_EXP_CLASS)) + exp_build_u32(exp, ATTR_EXP_CLASS, n, NTA_EXP_CLASS); } diff --git a/src/parse.c b/src/parse.c index 81e9c6b..f1fd628 100644 --- a/src/parse.c +++ b/src/parse.c @@ -341,6 +341,11 @@ static struct exp_parser { .exp_attr = ATTR_EXP_FLAGS, .size = NTA_SIZE(sizeof(uint32_t)), }, + [NTA_EXP_CLASS] = { + .parse = exp_parse_u32, + .exp_attr = ATTR_EXP_CLASS, + .size = NTA_SIZE(sizeof(uint32_t)), + }, }; static void exp_parse_ct_group(void *ct, int attr, void *data) -- cgit v1.2.3