summaryrefslogtreecommitdiffstats
path: root/iptables/nft.h
diff options
context:
space:
mode:
Diffstat (limited to 'iptables/nft.h')
-rw-r--r--iptables/nft.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/iptables/nft.h b/iptables/nft.h
index 4eaaa77f..aeacc608 100644
--- a/iptables/nft.h
+++ b/iptables/nft.h
@@ -71,9 +71,16 @@ enum obj_update_type {
NFT_COMPAT_TABLE_NEW,
};
+struct cache_chain {
+ struct list_head head;
+ char *name;
+};
+
struct nft_cache_req {
enum nft_cache_level level;
char *table;
+ bool all_chains;
+ struct list_head chain_list;
};
struct nft_handle {