diff options
author | Guangyuan Yang <ygy@FreeBSD.org> | 2018-11-21 00:22:31 +0000 |
---|---|---|
committer | Guangyuan Yang <ygy@FreeBSD.org> | 2018-11-21 00:22:31 +0000 |
commit | 14b520eaa25e291e54a19cf0b680ab909c671886 (patch) | |
tree | c91bb20942ef4db4e928bdf2eeae574cc856e67a /sbin/ipfw | |
parent | 91890b73ada1290aeee69a889a302d280a3c39ba (diff) | |
download | src-14b520eaa25e291e54a19cf0b680ab909c671886.tar.gz src-14b520eaa25e291e54a19cf0b680ab909c671886.zip |
Fix incorrect DSCP value range from 0..64 to 0..63.
PR: 232786
Submitted by: Sergey Akhmatov <sergey@akhmatov.ru>
Reviewed by: AllanJude
MFC after: 1 week
Notes
Notes:
svn path=/head/; revision=340717
Diffstat (limited to 'sbin/ipfw')
-rw-r--r-- | sbin/ipfw/ipfw.8 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/ipfw/ipfw.8 b/sbin/ipfw/ipfw.8 index c4ba67701f4e..a30cc35601c7 100644 --- a/sbin/ipfw/ipfw.8 +++ b/sbin/ipfw/ipfw.8 @@ -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 |