diff mbox series

options.c: add DSCP code LE Least Effort

Message ID mailman.28816.1641656181.1923571.openwrt-devel@lists.openwrt.org
State Superseded
Delegated to: Rui Salvaterra
Headers show
Series options.c: add DSCP code LE Least Effort | expand

Commit Message

Kevin 'ldir' Darbyshire-Bryant Jan. 8, 2022, 3:35 p.m. UTC
The sender domain has a DMARC Reject/Quarantine policy which disallows
sending mailing list messages using the original "From" header.

To mitigate this problem, the original message has been wrapped
automatically by the mailing list software.
Signed-off-by: Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>
---
 options.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Rui Salvaterra Jan. 8, 2022, 7:35 p.m. UTC | #1
Hi, Kevin,

On Sat, 8 Jan 2022 at 15:38, Kevin Darbyshire-Bryant via openwrt-devel
<openwrt-devel@lists.openwrt.org> wrote:
>
> Signed-off-by: Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>
> ---
>  options.c | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/options.c b/options.c
> index 6131786..2f419a3 100644
> --- a/options.c
> +++ b/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 },
> --
> 2.32.0 (Apple Git-132)
>

This patch has no description at all, unfortunately. Could you please
elaborate a bit on what it does and why it's needed? :)

Thanks,
Rui
diff mbox series

Patch

diff --git a/options.c b/options.c
index 6131786..2f419a3 100644
--- a/options.c
+++ b/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 },