svn commit: r299537 - head/sys/netinet

Michael Tuexen tuexen at FreeBSD.org
Thu May 12 15:48:09 UTC 2016


Author: tuexen
Date: Thu May 12 15:48:08 2016
New Revision: 299537
URL: https://svnweb.freebsd.org/changeset/base/299537

Log:
  Enable SACK Immediately per default.
  
  This has been tested for a long time and implements covered by RFC 7053.
  
  MFC after: 1 week

Modified:
  head/sys/netinet/sctp_sysctl.h

Modified: head/sys/netinet/sctp_sysctl.h
==============================================================================
--- head/sys/netinet/sctp_sysctl.h	Thu May 12 15:31:58 2016	(r299536)
+++ head/sys/netinet/sctp_sysctl.h	Thu May 12 15:48:08 2016	(r299537)
@@ -492,7 +492,7 @@ struct sctp_sysctl {
 #define SCTPCTL_SACK_IMMEDIATELY_ENABLE_DESC	"Enable sending of the SACK-IMMEDIATELY-bit."
 #define SCTPCTL_SACK_IMMEDIATELY_ENABLE_MIN	0
 #define SCTPCTL_SACK_IMMEDIATELY_ENABLE_MAX	1
-#define SCTPCTL_SACK_IMMEDIATELY_ENABLE_DEFAULT	SCTPCTL_SACK_IMMEDIATELY_ENABLE_MIN
+#define SCTPCTL_SACK_IMMEDIATELY_ENABLE_DEFAULT	SCTPCTL_SACK_IMMEDIATELY_ENABLE_MAX
 
 /* Enable sending of the NAT-FRIENDLY message */
 #define SCTPCTL_NAT_FRIENDLY_INITS_DESC	"Enable sending of the nat-friendly SCTP option on INITs."


More information about the svn-src-head mailing list