From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out-9.mta0.migadu.com (out-9.mta0.migadu.com [91.218.175.9]) by sourceware.org (Postfix) with ESMTPS id D33163858D1E for ; Sun, 16 Apr 2023 00:52:23 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org D33163858D1E Authentication-Results: sourceware.org; dmarc=pass (p=quarantine dis=none) header.from=rjp.ie Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=rjp.ie X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=rjp.ie; s=key1; t=1681606341; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=fB9ekfJW4gxKkpj9gxBi7pBd9Fj8b7y9/rH1xwOy+Qs=; b=mhWIFVZViVQif0WPxnH+hLwwJSLCnXivyUnb9anjggHbDl0bqrBxo8Oq9+pYRd8WNeH1+H +75Owt105HhrpE0a1Q1oUZ3juqCW2u7Txh0svLCcfDovHRRrxY6trhm/teRGjdE1VB0IIM PhptOUNlXGyRvasE41jcevmE5rXeH5U= From: Ronan Pigott To: libc-alpha@sourceware.org Cc: Ronan Pigott Subject: [PATCH] Add voice-admit DSCP code point from RFC-5865 Date: Sat, 15 Apr 2023 17:51:52 -0700 Message-Id: <20230416005152.24571-1-ronan@rjp.ie> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Spam-Status: No, score=-13.6 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,KAM_NUMSUBJECT,SPF_HELO_NONE,SPF_PASS autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: --- sysdeps/generic/netinet/ip.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sysdeps/generic/netinet/ip.h b/sysdeps/generic/netinet/ip.h index 32236dc1ce53..6bdb31b65e99 100644 --- a/sysdeps/generic/netinet/ip.h +++ b/sysdeps/generic/netinet/ip.h @@ -186,6 +186,11 @@ struct ip_timestamp #define IPTOS_DSCP_AF43 0x98 #define IPTOS_DSCP_EF 0xb8 +/* + * Voice-Admit DSCP code point from RFC-5865, Section 4. + */ +#define IPTOS_DSCP_VA 0xb0 + /* * In RFC 2474, Section 4.2.2.1, the Class Selector Codepoints subsume * the old ToS Precedence values. -- 2.40.0