summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@medozas.de>2011-03-06 18:11:58 +0100
committerJan Engelhardt <jengelh@medozas.de>2011-04-13 18:09:26 +0200
commit33d180871bea281a448efd0c1a49517318162382 (patch)
tree6f2cc428f8059d135a5f4e892b84a54a7cd0414e /include
parentea2a02f7e961011b2e226c25a5e8ff49e1f84278 (diff)
libxtables: pass struct xt_entry_{match,target} to x6 parser
Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
Diffstat (limited to 'include')
-rw-r--r--include/xtables.h.in4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/xtables.h.in b/include/xtables.h.in
index 6167f4da..afade14b 100644
--- a/include/xtables.h.in
+++ b/include/xtables.h.in
@@ -126,6 +126,10 @@ struct xt_option_call {
uint32_t mark, mask;
};
} val;
+ union {
+ struct xt_entry_match **match;
+ struct xt_entry_target **target;
+ };
};
/**