From patchwork Sat Jan 8 15:35:58 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kevin 'ldir' Darbyshire-Bryant X-Patchwork-Id: 1577260 X-Patchwork-Delegate: rsalvaterra@gmail.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: bilbo.ozlabs.org; dkim=pass (2048-bit key; secure) header.d=lists.infradead.org header.i=@lists.infradead.org header.a=rsa-sha256 header.s=bombadil.20210309 header.b=egUZwIyw; dkim-atps=neutral Authentication-Results: ozlabs.org; spf=none (no SPF record) smtp.mailfrom=lists.openwrt.org (client-ip=2607:7c80:54:e::133; helo=bombadil.infradead.org; envelope-from=openwrt-devel-bounces+incoming=patchwork.ozlabs.org@lists.openwrt.org; receiver=) Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:e::133]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by bilbo.ozlabs.org (Postfix) with ESMTPS id 4JWPQR1PlYz9t6h for ; Sun, 9 Jan 2022 02:39:10 +1100 (AEDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender:Content-Type:List-Help: Reply-To:List-Archive:List-Unsubscribe:List-Subscribe:From:List-Post:List-Id: Message-ID:MIME-Version:Date:Subject:To:Cc:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References:List-Owner; bh=5j/2pDjB6L7+YnvbMejXqqyX2awYQdhQHYnoc4J6VoY=; b=egUZwIywSwpmhpjjQiOutc4LCP KC4vqXGHYfVFwsC+bg59nvhrgrGQPBBSuOLUgUXP+ad4t040hhcnCOSZkW1N4Qyw5swydnFUPzRmK U4B0Nw3ij3qiLC9mJoaMe1RIB7Exctz91ermelwWhnHpeo6yIjMufw96m5Lvs1dwkacw1A8TialJ7 YKBFCqe6M9hw+JkNmSRihXS43DGoAHy7/vOBAwby0A/aiV6Vd79TpP8f44IP642C8ReC63/5LNqFj AQOeLY6Dqwgf8S+LdLlZLE5p/XlrBnxzYJADqq/1V2PTe5akG9DpA0Ee5tv0kFdfr19PThecARU3x FZjjdagA==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1n6DlW-006bCS-VQ; Sat, 08 Jan 2022 15:36:23 +0000 To: openwrt-devel@lists.openwrt.org Subject: [PATCH] options.c: add DSCP code LE Least Effort Date: Sat, 8 Jan 2022 15:35:58 +0000 MIME-Version: 1.0 Message-ID: List-Id: OpenWrt Development List List-Post: X-Patchwork-Original-From: Kevin Darbyshire-Bryant via openwrt-devel From: Kevin 'ldir' Darbyshire-Bryant Precedence: list X-Mailman-Version: 2.1.34 X-BeenThere: openwrt-devel@lists.openwrt.org List-Subscribe: , List-Unsubscribe: , List-Archive: Reply-To: Kevin Darbyshire-Bryant List-Help: Sender: "openwrt-devel" Errors-To: openwrt-devel-bounces+incoming=patchwork.ozlabs.org@lists.openwrt.org 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 --- 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 },