svn commit: r364558 - stable/12/sys/netinet

Michael Tuexen tuexen at FreeBSD.org
Sun Aug 23 21:55:35 UTC 2020


Author: tuexen
Date: Sun Aug 23 21:55:34 2020
New Revision: 364558
URL: https://svnweb.freebsd.org/changeset/base/364558

Log:
  MFC r359131:
  The MTU candidates MUST be a multiple of 4, so make them so.

Modified:
  stable/12/sys/netinet/sctputil.c
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/netinet/sctputil.c
==============================================================================
--- stable/12/sys/netinet/sctputil.c	Sun Aug 23 21:52:54 2020	(r364557)
+++ stable/12/sys/netinet/sctputil.c	Sun Aug 23 21:55:34 2020	(r364558)
@@ -862,7 +862,7 @@ static uint32_t sctp_mtu_sizes[] = {
 	2048,
 	4352,
 	4464,
-	8166,
+	8168,
 	17912,
 	32000,
 	65532


More information about the svn-src-all mailing list