From 682b656b5749507bc0db7dbf172b822dbf474d44 Mon Sep 17 00:00:00 2001 From: Pablo Neira Ayuso Date: Sun, 11 Nov 2012 22:53:57 +0100 Subject: examples: table: add example of dormant tables Now we add a non-dormant table which is not active. We can add chains and rules to it that would not have any effect. Once we change the flag to wake it up, the rule-set becomes active. Signed-off-by: Pablo Neira Ayuso --- examples/Makefile.am | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'examples/Makefile.am') diff --git a/examples/Makefile.am b/examples/Makefile.am index 9b9e345..aee95df 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -1,6 +1,7 @@ include $(top_srcdir)/Make_global.am check_PROGRAMS = nft-table-add \ + nft-table-upd \ nft-table-del \ nft-table-get \ nft-chain-add \ @@ -15,6 +16,9 @@ check_PROGRAMS = nft-table-add \ nft_table_add_SOURCES = nft-table-add.c nft_table_add_LDADD = ../src/libnftables.la ${LIBMNL_LIBS} +nft_table_upd_SOURCES = nft-table-upd.c +nft_table_upd_LDADD = ../src/libnftables.la ${LIBMNL_LIBS} + nft_table_del_SOURCES = nft-table-del.c nft_table_del_LDADD = ../src/libnftables.la ${LIBMNL_LIBS} -- cgit v1.2.3