svn commit: r360769 - stable/11/sys/netinet

Michael Tuexen tuexen at FreeBSD.org
Thu May 7 03:37:23 UTC 2020


Author: tuexen
Date: Thu May  7 03:37:22 2020
New Revision: 360769
URL: https://svnweb.freebsd.org/changeset/base/360769

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

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

Modified: stable/11/sys/netinet/sctputil.c
==============================================================================
--- stable/11/sys/netinet/sctputil.c	Thu May  7 03:29:18 2020	(r360768)
+++ stable/11/sys/netinet/sctputil.c	Thu May  7 03:37:22 2020	(r360769)
@@ -859,7 +859,7 @@ static uint32_t sctp_mtu_sizes[] = {
 	2048,
 	4352,
 	4464,
-	8166,
+	8168,
 	17912,
 	32000,
 	65532


More information about the svn-src-all mailing list