ipfw: Add missing 'va' code point name

Per RFC 5865, add the 'va' (VOICE-ADMIT, 101100) symbolic name.

Reviewed By: melifaro, pauamma
Differential Revision: https://reviews.freebsd.org/D37508
MFC after:	2 weeks
This commit is contained in:
Jose Luis Duran 2023-01-13 20:19:34 +00:00 committed by Alexander V. Chernikov
parent 7583c633e0
commit bdd60b224f
2 changed files with 4 additions and 1 deletions

View file

@ -1,7 +1,7 @@
.\"
.\" $FreeBSD$
.\"
.Dd August 17, 2022
.Dd January 13, 2023
.Dt IPFW 8
.Os
.Sh NAME
@ -1186,6 +1186,8 @@ Supported values are:
.Pq Dv 100100 ,
.Cm af43
.Pq Dv 100110 ,
.Cm va
.Pq Dv 101100 ,
.Cm ef
.Pq Dv 101110 ,
.Cm be

View file

@ -190,6 +190,7 @@ struct _s_x f_ipdscp[] = {
{ "af42", IPTOS_DSCP_AF42 >> 2 }, /* 100100 */
{ "af43", IPTOS_DSCP_AF43 >> 2 }, /* 100110 */
{ "be", IPTOS_DSCP_CS0 >> 2 }, /* 000000 */
{ "va", IPTOS_DSCP_VA >> 2 }, /* 101100 */
{ "ef", IPTOS_DSCP_EF >> 2 }, /* 101110 */
{ "cs0", IPTOS_DSCP_CS0 >> 2 }, /* 000000 */
{ "cs1", IPTOS_DSCP_CS1 >> 2 }, /* 001000 */