From: Florian Westphal Date: Mon, 21 Aug 2023 14:12:52 +0000 (+0200) Subject: parser: permit gc-interval in map declarations X-Git-Tag: v1.0.9~172 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=61eab46ee62a72629fa86c1929e73a2bfa95bc02;p=thirdparty%2Fnftables.git parser: permit gc-interval in map declarations Maps support timeouts, so allow to set the gc interval as well. Fixes: 949cc39eb93f ("parser: support of maps with timeout") Signed-off-by: Florian Westphal --- diff --git a/src/parser_bison.y b/src/parser_bison.y index 56378293..7b8eac95 100644 --- a/src/parser_bison.y +++ b/src/parser_bison.y @@ -2237,6 +2237,11 @@ map_block : /* empty */ { $$ = $-1; } $1->timeout = $3; $$ = $1; } + | map_block GC_INTERVAL time_spec stmt_separator + { + $1->gc_int = $3; + $$ = $1; + } | map_block TYPE data_type_expr COLON map_block_data_interval data_type_expr stmt_separator close_scope_type