Hello,
can you please include this patch in nftables?
THX.
--
S pozdravem
Best regards
Tomáš Mudruňka - SPOJE.NET s.r.o.
parser: allow classid as set key
From: Arturo Borrero Gonzalez <arturo@xxxxxxxxxxxxx>
Allow TC classid as set key.
Signed-off-by: Arturo Borrero Gonzalez <arturo@xxxxxxxxxxxxx>
Reported-by: Tomas Mudrunka <mudrunka@xxxxxxxxx>
Tested-by: Tomas Mudrunka <mudrunka@xxxxxxxxx>
---
src/parser_bison.y | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/parser_bison.y b/src/parser_bison.y
index 7016f5b..2918875 100644
--- a/src/parser_bison.y
+++ b/src/parser_bison.y
@@ -1545,6 +1545,7 @@ type_identifier : STRING { $$ = $1; }
| MARK { $$ = xstrdup("mark"); }
| DSCP { $$ = xstrdup("dscp"); }
| ECN { $$ = xstrdup("ecn"); }
+ | CLASSID { $$ = xstrdup("classid"); }
;
hook_spec : TYPE STRING HOOK STRING dev_spec PRIORITY prio_spec