From a9a599ab675b8feb942355a24934901a9adcef1b Mon Sep 17 00:00:00 2001 From: Shivani Bhardwaj Date: Wed, 24 Feb 2016 01:19:34 +0530 Subject: comment: Add translation to nft Add translation for match comment to nftables. This patch also adds the relevant infrastructure for carrying out the translation. Example: $ sudo iptables-translate -A INPUT -s 192.168.0.0 -m comment --comment "A privatized IP block" nft add rule ip filter INPUT ip saddr 192.168.0.0 counter comment \"A privatized IP block\" Signed-off-by: Shivani Bhardwaj Signed-off-by: Pablo Neira Ayuso --- include/xtables.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include') diff --git a/include/xtables.h b/include/xtables.h index 6fd3bdfc..e219c9f9 100644 --- a/include/xtables.h +++ b/include/xtables.h @@ -574,6 +574,7 @@ struct xt_xlate *xt_xlate_alloc(int size); void xt_xlate_free(struct xt_xlate *xl); void xt_xlate_add(struct xt_xlate *xl, const char *fmt, ...); void xt_xlate_add_comment(struct xt_xlate *xl, const char *comment); +const char *xt_xlate_get_comment(struct xt_xlate *xl); const char *xt_xlate_get(struct xt_xlate *xl); #ifdef XTABLES_INTERNAL -- cgit v1.2.3