On Fri, Nov 24, 2017 at 02:29:00PM +0100, Pablo Neira Ayuso wrote:
> @@ -2518,6 +2515,23 @@ meter_stmt_opt : TABLE
> identifier
> }
> ;
>
> +meter_stmt_alloc : METER identifier '{'
> meter_key_expr stmt '}'
> + {
> + $$ = meter_stmt_alloc(&@$);
> + $$->meter.name = $2;
> + $$->meter.key = $4;
> + $$->meter.stmt = $5;
> + $$->location = @$;
> + }
I'm removing from here...
> + | METER '{' meter_key_expr stmt '}'
> + {
> + $$ = meter_stmt_alloc(&@$);
> + $$->meter.key = $3;
> + $$->meter.stmt = $4;
> + $$->location = @$;
> + }
to there.
There's no point in nameless meters as we discussed, sorry, this just
slipped through.
Will be mangling this before pushing it out.
--
To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html