summaryrefslogtreecommitdiffstats
path: root/src/expect/getter.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/expect/getter.c')
-rw-r--r--src/expect/getter.c35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/expect/getter.c b/src/expect/getter.c
new file mode 100644
index 0000000..2cbebe6
--- /dev/null
+++ b/src/expect/getter.c
@@ -0,0 +1,35 @@
+/*
+ * (C) 2006-2007 by Pablo Neira Ayuso <pablo@netfilter.org>
+ *
+ * This software may be used and distributed according to the terms
+ * of the GNU General Public License, incorporated herein by reference.
+ */
+
+#include "internal.h"
+
+static const void *get_exp_attr_master(const struct nf_expect *exp)
+{
+ return &exp->master;
+}
+
+static const void *get_exp_attr_expected(const struct nf_expect *exp)
+{
+ return &exp->expected;
+}
+
+static const void *get_exp_attr_mask(const struct nf_expect *exp)
+{
+ return &exp->mask;
+}
+
+static const void *get_exp_attr_timeout(const struct nf_expect *exp)
+{
+ return &exp->timeout;
+}
+
+get_exp_attr get_exp_attr_array[] = {
+ [ATTR_EXP_MASTER] = get_exp_attr_master,
+ [ATTR_EXP_EXPECTED] = get_exp_attr_expected,
+ [ATTR_EXP_MASK] = get_exp_attr_mask,
+ [ATTR_EXP_TIMEOUT] = get_exp_attr_timeout,
+};