summaryrefslogtreecommitdiffstats
path: root/iptables-multi.c
blob: 754b5873fa53fd593ceb0b9f425316007a2ffb92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "xshared.h"

int iptables_main(int argc, char **argv);
int iptables_save_main(int argc, char **argv);
int iptables_restore_main(int argc, char **argv);
int iptables_xml_main(int argc, char **argv);

static const struct subcommand multi4_subcommands[] = {
	{"iptables",         iptables_main},
	{"main",             iptables_main},
	{"iptables-save",    iptables_save_main},
	{"save",             iptables_save_main},
	{"iptables-restore", iptables_restore_main},
	{"restore",          iptables_restore_main},
	{"iptables-xml",     iptables_xml_main},
	{"xml",              iptables_xml_main},
	{NULL},
};

int main(int argc, char **argv)
{
	return subcmd_main(argc, argv, multi4_subcommands);
}