From 4f3828237aae8dcbb5c38f44d5d0800f11273a0a Mon Sep 17 00:00:00 2001 From: dgcampea Date: Wed, 2 Feb 2022 05:24:01 +0000 Subject: [PATCH] Fix DSCP LE value Correct value is 0x04 since we need to account for the 2 ECN bits. --- src/net/DscpParser.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/net/DscpParser.cxx b/src/net/DscpParser.cxx index b15eb3891..908dbe921 100644 --- a/src/net/DscpParser.cxx +++ b/src/net/DscpParser.cxx @@ -69,7 +69,7 @@ #endif #ifndef IPTOS_DSCP_LE -#define IPTOS_DSCP_LE 0x01 +#define IPTOS_DSCP_LE 0x04 #endif static constexpr struct {