All of lore.kernel.org
 help / color / mirror / Atom feed
* [libnftables PATCH 1/2] src: delete exporting internal flags in XML
@ 2013-04-29 12:36 Arturo Borrero
  2013-04-29 12:36 ` [libnftables PATCH 2/2] src: support for XML parsing Arturo Borrero
  2013-05-03 16:22 ` [libnftables PATCH 1/2] src: delete exporting internal flags in XML Pablo Neira Ayuso
  0 siblings, 2 replies; 6+ messages in thread
From: Arturo Borrero @ 2013-04-29 12:36 UTC (permalink / raw)
  To: netfilter-devel; +Cc: pablo

The uint32_t flags attribute is internal, so no need to export/import in XML.

Signed-off-by: Arturo Borrero González <arturo.borrero.glez@gmail.com>
---
 src/chain.c |    5 ++---
 src/table.c |    3 +--
 2 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/src/chain.c b/src/chain.c
index fb5d218..44a0e66 100644
--- a/src/chain.c
+++ b/src/chain.c
@@ -452,7 +452,6 @@ static int nft_chain_snprintf_xml(char *buf, size_t size, struct nft_chain *c)
 		"<chain name=\"%s\" handle=\"%lu\""
 			" bytes=\"%lu\" packets=\"%lu\">"
 			"<properties>"
-				"<flags>%d</flags>"
 				"<type>%s</type>"
 				"<table>%s</table>"
 				"<prio>%d</prio>"
@@ -463,8 +462,8 @@ static int nft_chain_snprintf_xml(char *buf, size_t size, struct nft_chain *c)
 			"</properties>"
 		"</chain>",
 			c->name, c->handle, c->bytes, c->packets,
-			c->flags, c->type, c->table, c->prio,
-			c->use, c->hooknum, c->policy, c->family);
+			c->type, c->table, c->prio, c->use, c->hooknum,
+			c->policy, c->family);
 }
 
 static int nft_chain_snprintf_default(char *buf, size_t size, struct nft_chain *c)
diff --git a/src/table.c b/src/table.c
index 2d72136..8adaba8 100644
--- a/src/table.c
+++ b/src/table.c
@@ -188,11 +188,10 @@ static int nft_table_snprintf_xml(char *buf, size_t size, struct nft_table *t)
 			"<table name=\"%s\">"
 				"<properties>"
 					"<family>%u</family>"
-					"<flags>%d</flags>"
 					"<table_flags>%d</table_flags>"
 				"</properties>"
 			"</table>" ,
-			t->name, t->family, t->flags, t->table_flags);
+			t->name, t->family, t->table_flags);
 }
 
 static int nft_table_snprintf_default(char *buf, size_t size, struct nft_table *t)

--
To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2013-05-08 11:26 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-29 12:36 [libnftables PATCH 1/2] src: delete exporting internal flags in XML Arturo Borrero
2013-04-29 12:36 ` [libnftables PATCH 2/2] src: support for XML parsing Arturo Borrero
2013-05-03 16:24   ` Pablo Neira Ayuso
2013-05-08 10:36     ` Arturo Borrero Gonzalez
2013-05-08 11:26       ` Arturo Borrero Gonzalez
2013-05-03 16:22 ` [libnftables PATCH 1/2] src: delete exporting internal flags in XML Pablo Neira Ayuso

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.