2020-11-03 11:50:46 +00:00
|
|
|
From 77a93baa622f8aa33fa6182d72b380d980e39574 Mon Sep 17 00:00:00 2001
|
2020-10-27 18:21:20 +00:00
|
|
|
From: Phil Sutter <psutter@redhat.com>
|
|
|
|
Date: Sat, 8 Aug 2020 00:09:06 +0200
|
|
|
|
Subject: [PATCH] include: Resync nf_tables.h cache copy
|
|
|
|
|
2020-11-03 11:50:46 +00:00
|
|
|
Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=1820684
|
2020-10-27 18:21:20 +00:00
|
|
|
Upstream Status: nftables commit f1e5a0499c077
|
|
|
|
|
|
|
|
commit f1e5a0499c0773f18bc592dd0da0340120daa482
|
|
|
|
Author: Stefano Brivio <sbrivio@redhat.com>
|
|
|
|
Date: Mon Apr 13 21:48:02 2020 +0200
|
|
|
|
|
|
|
|
include: Resync nf_tables.h cache copy
|
|
|
|
|
|
|
|
Get this header in sync with nf.git as of commit ef516e8625dd.
|
|
|
|
|
|
|
|
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
|
|
|
|
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
|
|
|
---
|
|
|
|
include/linux/netfilter/nf_tables.h | 2 ++
|
|
|
|
1 file changed, 2 insertions(+)
|
|
|
|
|
|
|
|
diff --git a/include/linux/netfilter/nf_tables.h b/include/linux/netfilter/nf_tables.h
|
2020-11-03 11:50:46 +00:00
|
|
|
index 1a99df3..9b54a86 100644
|
2020-10-27 18:21:20 +00:00
|
|
|
--- a/include/linux/netfilter/nf_tables.h
|
|
|
|
+++ b/include/linux/netfilter/nf_tables.h
|
|
|
|
@@ -274,6 +274,7 @@ enum nft_rule_compat_attributes {
|
|
|
|
* @NFT_SET_TIMEOUT: set uses timeouts
|
|
|
|
* @NFT_SET_EVAL: set can be updated from the evaluation path
|
|
|
|
* @NFT_SET_OBJECT: set contains stateful objects
|
|
|
|
+ * @NFT_SET_CONCAT: set contains a concatenation
|
|
|
|
*/
|
|
|
|
enum nft_set_flags {
|
|
|
|
NFT_SET_ANONYMOUS = 0x1,
|
|
|
|
@@ -283,6 +284,7 @@ enum nft_set_flags {
|
|
|
|
NFT_SET_TIMEOUT = 0x10,
|
|
|
|
NFT_SET_EVAL = 0x20,
|
|
|
|
NFT_SET_OBJECT = 0x40,
|
|
|
|
+ NFT_SET_CONCAT = 0x80,
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
--
|
2022-05-10 07:14:00 +00:00
|
|
|
2.31.1
|
2020-10-27 18:21:20 +00:00
|
|
|
|