summaryrefslogtreecommitdiffstats
path: root/iptables/xshared.h
diff options
context:
space:
mode:
authorPhil Sutter <phil@nwl.cc>2021-12-22 21:58:18 +0100
committerPhil Sutter <phil@nwl.cc>2022-01-12 14:04:52 +0100
commitdc8d8fce581bff4640803f3db07f0c2df5e7e18f (patch)
treee2a7feda9f3993e038f8f300633be127bb7081cc /iptables/xshared.h
parent98a4462f0abd54d96ed91d07d55608dd10fec414 (diff)
xtables: Move struct nft_xt_cmd_parse to xshared.h
Preparing for shared use with legacy variants, move it to "neutral ground" and give it a more generic name. Signed-off-by: Phil Sutter <phil@nwl.cc>
Diffstat (limited to 'iptables/xshared.h')
-rw-r--r--iptables/xshared.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/iptables/xshared.h b/iptables/xshared.h
index 2c05b0d7..dde94b73 100644
--- a/iptables/xshared.h
+++ b/iptables/xshared.h
@@ -262,4 +262,16 @@ int print_match_save(const struct xt_entry_match *e, const void *ip);
void xtables_printhelp(const struct xtables_rule_match *matches);
void exit_tryhelp(int status, int line) __attribute__((noreturn));
+struct xt_cmd_parse {
+ unsigned int command;
+ unsigned int rulenum;
+ char *table;
+ const char *chain;
+ const char *newname;
+ const char *policy;
+ bool restore;
+ int verbose;
+ bool xlate;
+};
+
#endif /* IPTABLES_XSHARED_H */