#ifndef IPTABLES_XSHARED_H #define IPTABLES_XSHARED_H 1 #include #include #include #include #include #include enum { OPT_NONE = 0, OPT_NUMERIC = 1 << 0, OPT_SOURCE = 1 << 1, OPT_DESTINATION = 1 << 2, OPT_PROTOCOL = 1 << 3, OPT_JUMP = 1 << 4, OPT_VERBOSE = 1 << 5, OPT_EXPANDED = 1 << 6, OPT_VIANAMEIN = 1 << 7, OPT_VIANAMEOUT = 1 << 8, OPT_LINENUMBERS = 1 << 9, OPT_COUNTERS = 1 << 10, }; struct xtables_rule_match; struct xtables_target; struct iptables_command_state { union { struct ipt_entry fw; struct ip6t_entry fw6; }; int invert; int c; unsigned int options; struct xtables_rule_match *matches; struct xtables_target *target; char *protocol; int proto_used; const char *jumpto; char **argv; }; typedef int (*mainfunc_t)(int, char **); struct subcommand { const char *name; mainfunc_t main; }; enum { XT_OPTION_OFFSET_SCALE = 256, }; extern void print_extension_helps(const struct xtables_target *, const struct xtables_rule_match *); extern const char *proto_to_name(uint8_t, int); extern struct xtables_match *load_proto(struct iptables_command_state *); extern int subcmd_main(int, char **, const struct subcommand *); #endif /* IPTABLES_XSHARED_H */