Print out the statistics for cache updates of rtt, rttvar, and ssthresh.

This commit is contained in:
Garrett Wollman 1995-06-19 16:46:21 +00:00
parent 9167720192
commit 861b18288b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=9264

View file

@ -210,6 +210,11 @@ tcp_stats(off, name)
p(tcps_connects, "\t%d connection%s established (including accepts)\n");
p2(tcps_closed, tcps_drops,
"\t%d connection%s closed (including %d drop%s)\n");
p(tcps_cachedrtt, "\t\t%d connection%s upcated cached RTT on close\n");
p(tcps_cachedrttvar,
"\t\t%d connection%s upcated cached RTT variance on close\n");
p(tcps_cachedssthresh,
"\t\t%d connection%s updated cached ssthresh on close\n");
p(tcps_conndrops, "\t%d embryonic connection%s dropped\n");
p2(tcps_rttupdated, tcps_segstimed,
"\t%d segment%s updated rtt (of %d attempt%s)\n");