svn commit: r346203 - stable/11/sbin/ipfw

Andrey V. Elsukov ae at FreeBSD.org
Tue Sep 3 14:07:39 UTC 2019


Author: ae
Date: Sun Apr 14 11:50:07 2019
New Revision: 346203
URL: https://svnweb.freebsd.org/changeset/base/346203

Log:
  MFC r340717 (by ygy):
    Fix incorrect DSCP value range from 0..64 to 0..63.
  
    PR:		232786
    Submitted by:	Sergey Akhmatov <sergey at akhmatov.ru>

Modified:
  stable/11/sbin/ipfw/ipfw.8
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sbin/ipfw/ipfw.8
==============================================================================
--- stable/11/sbin/ipfw/ipfw.8	Sun Apr 14 11:19:08 2019	(r346202)
+++ stable/11/sbin/ipfw/ipfw.8	Sun Apr 14 11:50:07 2019	(r346203)
@@ -1159,11 +1159,11 @@ Supported values are:
 .Pq Dv 101110 ,
 .Cm be
 .Pq Dv 000000 .
-Additionally, DSCP value can be specified by number (0..64).
+Additionally, DSCP value can be specified by number (0..63).
 It is also possible to use the
 .Cm tablearg
 keyword with setdscp.
-If the tablearg value is not within the 0..64 range, lower 6 bits of supplied
+If the tablearg value is not within the 0..63 range, lower 6 bits of supplied
 value are used.
 .It Cm tcp-setmss Ar mss
 Set the Maximum Segment Size (MSS) in the TCP segment to value




More information about the svn-src-all mailing list