{
}
-/* Prints out the targinfo. */
-static void
-print(const struct ipt_ip *ip,
- const struct ipt_entry_target *target,
- int numeric)
-{
-}
-
-/* Saves the union ipt_targinfo in parsable form to stdout. */
-static void
-save(const struct ipt_ip *ip, const struct ipt_entry_target *target)
-{
-}
-
struct iptables_target mirror
= { NULL,
"MIRROR",
&init,
&parse,
&final_check,
- &print,
- &save,
+ NULL, /* print */
+ NULL, /* save */
opts
};
{
}
-/* Saves the union ipt_matchinfo in parsable form to stdout. */
-static void save(const struct ipt_ip *ip, const struct ipt_entry_match *match)
-{
-}
-
struct iptables_match unclean
= { NULL,
"unclean",
&parse,
&final_check,
NULL, /* print */
- &save,
+ NULL, /* save */
opts
};