From a852febc1f87bb1d7924c360748e3379eb9a993c Mon Sep 17 00:00:00 2001 From: Toby Date: Sat, 15 Jun 2024 15:42:39 -0700 Subject: [PATCH] fix: incorrect speed conversion base --- app/cmd/speedtest.go | 4 ++-- core/internal/congestion/bbr/bbr_sender.go | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/cmd/speedtest.go b/app/cmd/speedtest.go index 6195c72..12d3a83 100644 --- a/app/cmd/speedtest.go +++ b/app/cmd/speedtest.go @@ -152,8 +152,8 @@ func formatSpeed(bytes uint32, duration time.Duration, useBytes bool) string { speed *= 8 } unitIndex := 0 - for speed > 1024 && unitIndex < len(units)-1 { - speed /= 1024 + for speed > 1000 && unitIndex < len(units)-1 { + speed /= 1000 unitIndex++ } return fmt.Sprintf("%.2f %s", speed, units[unitIndex]) diff --git a/core/internal/congestion/bbr/bbr_sender.go b/core/internal/congestion/bbr/bbr_sender.go index 62868ec..8f58e1f 100644 --- a/core/internal/congestion/bbr/bbr_sender.go +++ b/core/internal/congestion/bbr/bbr_sender.go @@ -976,8 +976,8 @@ func formatSpeed(bw Bandwidth) string { bwf := float64(bw) units := []string{"bps", "Kbps", "Mbps", "Gbps"} unitIndex := 0 - for bwf > 1024 && unitIndex < len(units)-1 { - bwf /= 1024 + for bwf > 1000 && unitIndex < len(units)-1 { + bwf /= 1000 unitIndex++ } return fmt.Sprintf("%.2f %s", bwf, units[unitIndex])