* [PATCH nft] parser_bison: allow to used named limit from dictionaries too
@ 2017-10-02 16:26 Pablo Neira Ayuso
0 siblings, 0 replies; 3+ messages in thread
From: Pablo Neira Ayuso @ 2017-10-02 16:26 UTC (permalink / raw)
To: netfilter-devel
Allow to use limit objects from dictionaries.
Fixes: c0697eabe832 ("src: add stateful object support for limit")
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
---
src/parser_bison.y | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/src/parser_bison.y b/src/parser_bison.y
index f996d9d94880..7016f5b24887 100644
--- a/src/parser_bison.y
+++ b/src/parser_bison.y
@@ -1426,6 +1426,15 @@ map_block : /* empty */ { $$ = $<set>-1; }
$1->flags |= NFT_SET_OBJECT;
$$ = $1;
}
+ | map_block TYPE
+ data_type_expr COLON LIMIT
+ stmt_separator
+ {
+ $1->key = $3;
+ $1->objtype = NFT_OBJECT_LIMIT;
+ $1->flags |= NFT_SET_OBJECT;
+ $$ = $1;
+ }
| map_block FLAGS set_flag_list stmt_separator
{
$1->flags |= $3;
--
2.1.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH nft] parser_bison: allow to used named limit from dictionaries too
@ 2017-10-09 11:48 Pablo Neira Ayuso
2017-10-09 11:59 ` Pablo Neira Ayuso
0 siblings, 1 reply; 3+ messages in thread
From: Pablo Neira Ayuso @ 2017-10-09 11:48 UTC (permalink / raw)
To: netfilter-devel
Allow to use limit objects from dictionaries.
Fixes: c0697eabe832 ("src: add stateful object support for limit")
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
---
src/parser_bison.y | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/src/parser_bison.y b/src/parser_bison.y
index f996d9d94880..7016f5b24887 100644
--- a/src/parser_bison.y
+++ b/src/parser_bison.y
@@ -1426,6 +1426,15 @@ map_block : /* empty */ { $$ = $<set>-1; }
$1->flags |= NFT_SET_OBJECT;
$$ = $1;
}
+ | map_block TYPE
+ data_type_expr COLON LIMIT
+ stmt_separator
+ {
+ $1->key = $3;
+ $1->objtype = NFT_OBJECT_LIMIT;
+ $1->flags |= NFT_SET_OBJECT;
+ $$ = $1;
+ }
| map_block FLAGS set_flag_list stmt_separator
{
$1->flags |= $3;
--
2.1.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH nft] parser_bison: allow to used named limit from dictionaries too
2017-10-09 11:48 Pablo Neira Ayuso
@ 2017-10-09 11:59 ` Pablo Neira Ayuso
0 siblings, 0 replies; 3+ messages in thread
From: Pablo Neira Ayuso @ 2017-10-09 11:59 UTC (permalink / raw)
To: netfilter-devel
On Mon, Oct 09, 2017 at 01:48:11PM +0200, Pablo Neira Ayuso wrote:
> Allow to use limit objects from dictionaries.
Please, ignore this. My robot accidentally included this, this is
already upstream for a while.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-10-09 11:59 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-02 16:26 [PATCH nft] parser_bison: allow to used named limit from dictionaries too Pablo Neira Ayuso
-- strict thread matches above, loose matches on Subject: below --
2017-10-09 11:48 Pablo Neira Ayuso
2017-10-09 11:59 ` Pablo Neira Ayuso
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).