summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorFlorian Westphal <fw@strlen.de>2017-05-24 20:10:44 +0200
committerFlorian Westphal <fw@strlen.de>2017-07-16 20:14:43 +0200
commitf63405f9203ce7a8464d585ad49ea67fb2c0bb3f (patch)
treed01bf44834459ab1fdd02eb659310506e9fc48ac /include
parent0802d4f1fe7c65112633f002fbd56f97388f8ef5 (diff)
rename struct ct to ct_helper
Its misleading, this structure holds members for ct_helper object infrastructure, rename it. Signed-off-by: Florian Westphal <fw@strlen.de>
Diffstat (limited to 'include')
-rw-r--r--include/rule.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/rule.h b/include/rule.h
index 7424b21c..24c73d85 100644
--- a/include/rule.h
+++ b/include/rule.h
@@ -263,8 +263,8 @@ struct quota {
uint32_t flags;
};
-struct ct {
- char helper_name[16];
+struct ct_helper {
+ char name[16];
uint16_t l3proto;
uint8_t l4proto;
};
@@ -287,7 +287,7 @@ struct obj {
union {
struct counter counter;
struct quota quota;
- struct ct ct;
+ struct ct_helper ct_helper;
};
};