Browse Source

options.c: add DSCP code LE Least Effort

RFC-8622 implements a low priority DSCP marking called 'Least Effort' or
'LE'  Instead of prioritising traffic in varying degrees, this defines a
scum class of packet that really is the lowest of the low and you may
consider forwarding if you really have nothing better to do.

This patch adds LE class support to firewall3.

Signed-off-by: Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>
Kevin Darbyshire-Bryant 2 years ago
parent
commit
0f16ea5f05
1 changed files with 1 additions and 0 deletions
  1. 1 0
      options.c

+ 1 - 0
options.c

@@ -146,6 +146,7 @@ static const struct { const char *name; uint8_t dscp; } dscp_classes[] = {
 	{ "CS6",  0x30 },
 	{ "CS7",  0x38 },
 	{ "BE",   0x00 },
+	{ "LE",   0x01 },
 	{ "AF11", 0x0a },
 	{ "AF12", 0x0c },
 	{ "AF13", 0x0e },