From 27619ffbe503ed4d9e59a02e81db9a7ac49d37af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20Neira=20Ayuso?= Date: Tue, 10 Jun 2014 15:26:24 +0200 Subject: queue: More compact syntax This patch allows to use a new syntax more compact and break the current syntax. This new syntax is more similar than the nftables syntax that we use usually. We can use range like we have used in other case in nftables. Here, we have some examples: Before, If we want to declare a queue, we have used a syntax like this: nft add rule test input queue num 1 total 3 options bypass,fanout If we want to use the queue number 1 and the two next (total 3), we use a range in the new syntax, for example: nft add rule test input queue num 1-3 bypass fanout Also if we want to use only one queue, the new rules are like: nft add rule test input queue num 1 # queue 1 or nft add rule test input queue # queue 0 And if we want to add a specific flags we only need to put what flags we want to use: nft add rule test input queue bypass we don't need to use options and the comma for indicating the flags. Signed-off-by: Alvaro Neira Ayuso Signed-off-by: Pablo Neira Ayuso --- src/scanner.l | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/scanner.l') diff --git a/src/scanner.l b/src/scanner.l index d8d70ede..73a1a3f1 100644 --- a/src/scanner.l +++ b/src/scanner.l @@ -279,10 +279,8 @@ addrstring ({macaddr}|{ip4addr}|{ip6addr}) "queue" { return QUEUE;} "num" { return QUEUENUM;} -"total" { return QUEUETOTAL;} "bypass" { return QUEUEBYPASS;} "fanout" { return QUEUECPUFANOUT;} -"options" { return OPTIONS;} "limit" { return LIMIT; } "rate" { return RATE; } -- cgit v1.2.3