summaryrefslogtreecommitdiff
path: root/extendedstats/unix.go
diff options
context:
space:
mode:
Diffstat (limited to 'extendedstats/unix.go')
-rw-r--r--extendedstats/unix.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/extendedstats/unix.go b/extendedstats/unix.go
index 1454f1c..fd537ee 100644
--- a/extendedstats/unix.go
+++ b/extendedstats/unix.go
@@ -60,12 +60,12 @@ func (es *AggregateExtendedStats) IncorporateConnectionStats(basicConn net.Conn)
func (es *AggregateExtendedStats) Repr() string {
return fmt.Sprintf(`Extended Statistics:
- Maximum Path MTU: %v
- Maximum Send MSS: %v
- Maximum Recv MSS: %v
+ Maximum Path MTU: %v
+ Maximum Send MSS: %v
+ Maximum Recv MSS: %v
Total Retransmissions: %v
- Total Reorderings: %v
- Average RTT: %v
+ Total Reorderings: %v
+ Average RTT: %v
`, es.MaxPathMtu, es.MaxSendMss, es.MaxRecvMss, es.TotalRetransmissions, es.TotalReorderings, es.AverageRtt)
}