svn commit: r286669 - head/sys/netinet

Hiren Panchasara hiren at FreeBSD.org
Wed Aug 12 16:08:38 UTC 2015


Author: hiren
Date: Wed Aug 12 16:08:37 2015
New Revision: 286669
URL: https://svnweb.freebsd.org/changeset/base/286669

Log:
  Remove unused TCPTV_SRTTDFLT. We initialize srtt with TCPTV_SRTTBASE when we
  don't have any rtt estimate.
  
  Differential Revision:	D3334
  Sponsored by:		Limelight Networks

Modified:
  head/sys/netinet/tcp_timer.h

Modified: head/sys/netinet/tcp_timer.h
==============================================================================
--- head/sys/netinet/tcp_timer.h	Wed Aug 12 15:48:14 2015	(r286668)
+++ head/sys/netinet/tcp_timer.h	Wed Aug 12 16:08:37 2015	(r286669)
@@ -76,7 +76,6 @@
 #define	TCPTV_SRTTBASE	0			/* base roundtrip time;
 						   if 0, no idea yet */
 #define	TCPTV_RTOBASE	(  3*hz)		/* assumed RTO if no info */
-#define	TCPTV_SRTTDFLT	(  3*hz)		/* assumed RTT if no info */
 
 #define	TCPTV_PERSMIN	(  5*hz)		/* retransmit persistence */
 #define	TCPTV_PERSMAX	( 60*hz)		/* maximum persist interval */


More information about the svn-src-all mailing list