svn commit: r212851 - head/sys/netinet

Michael Tuexen tuexen at FreeBSD.org
Sun Sep 19 11:57:21 UTC 2010


Author: tuexen
Date: Sun Sep 19 11:57:21 2010
New Revision: 212851
URL: http://svn.freebsd.org/changeset/base/212851

Log:
  Allow the initial congestion window to be configure
  to one MTU. Improve the description.
  
  MFC after: 2 weeks.

Modified:
  head/sys/netinet/sctp_sysctl.h

Modified: head/sys/netinet/sctp_sysctl.h
==============================================================================
--- head/sys/netinet/sctp_sysctl.h	Sun Sep 19 11:42:16 2010	(r212850)
+++ head/sys/netinet/sctp_sysctl.h	Sun Sep 19 11:57:21 2010	(r212851)
@@ -499,8 +499,8 @@ struct sctp_sysctl {
 #define SCTPCTL_BUFFER_SPLITTING_DEFAULT	SCTPCTL_BUFFER_SPLITTING_MIN
 
 /* Initial congestion window in MTU */
-#define SCTPCTL_INITIAL_CWND_DESC	"Initial congestion window in MTU"
-#define SCTPCTL_INITIAL_CWND_MIN	2
+#define SCTPCTL_INITIAL_CWND_DESC	"Initial congestion window in MTUs"
+#define SCTPCTL_INITIAL_CWND_MIN	1
 #define SCTPCTL_INITIAL_CWND_MAX	0xffffffff
 #define SCTPCTL_INITIAL_CWND_DEFAULT	3
 


More information about the svn-src-all mailing list