summaryrefslogtreecommitdiffstats
path: root/examples/nft-table-get.c
diff options
context:
space:
mode:
authorArturo Borrero Gonzalez <arturo.borrero.glez@gmail.com>2013-02-11 12:56:38 +0000
committerPablo Neira Ayuso <pablo@gnumonks.org>2013-02-12 22:56:56 +0100
commit158392c6c719f156b96f5871d922f6f272012726 (patch)
treea781efd30b410ca32e3a757690e3e8fdefc9de68 /examples/nft-table-get.c
parent26e06d838d6471f5233c1da3fee012bf113564a5 (diff)
examples: add XML output for table/chain/rule
To show an instance of this patch: (shell)$ ./nft-table-get xml <table name="filter" > <properties> <family value="2" /> <flags value="5" table_flags="0" /> </properties> </table> Signed-off-by: Arturo Borrero Gonzalez <arturo.borrero.glez@gmail.co Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'examples/nft-table-get.c')
-rw-r--r--examples/nft-table-get.c14
1 files changed, 12 insertions, 2 deletions
diff --git a/examples/nft-table-get.c b/examples/nft-table-get.c
index 219c188..518e176 100644
--- a/examples/nft-table-get.c
+++ b/examples/nft-table-get.c
@@ -23,6 +23,7 @@ static int table_cb(const struct nlmsghdr *nlh, void *data)
{
struct nft_table *t;
char buf[4096];
+ uint32_t *type = data;
t = nft_table_alloc();
if (t == NULL) {
@@ -35,7 +36,7 @@ static int table_cb(const struct nlmsghdr *nlh, void *data)
goto err_free;
}
- nft_table_snprintf(buf, sizeof(buf), t, NFT_TABLE_O_DEFAULT, 0);
+ nft_table_snprintf(buf, sizeof(buf), t, *type, 0);
printf("%s", buf);
err_free:
@@ -52,6 +53,15 @@ int main(int argc, char *argv[])
uint32_t portid, seq;
struct nft_table *t = NULL;
int ret;
+ uint32_t type = NFT_TABLE_O_DEFAULT;
+
+ if (strcmp(argv[argc-1], "xml") == 0) {
+ type = NFT_TABLE_O_XML;
+ argv[argc-1] = NULL;
+ argc--;
+ } else if (strcmp(argv[argc - 1], "default") == 0) {
+ argc--;
+ }
if (argc == 2) {
t = nft_table_alloc();
@@ -92,7 +102,7 @@ int main(int argc, char *argv[])
ret = mnl_socket_recvfrom(nl, buf, sizeof(buf));
while (ret > 0) {
- ret = mnl_cb_run(buf, ret, seq, portid, table_cb, NULL);
+ ret = mnl_cb_run(buf, ret, seq, portid, table_cb, &type);
if (ret <= 0)
break;
ret = mnl_socket_recvfrom(nl, buf, sizeof(buf));