Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for bit rate conversion from bps to kbps/mbps #72

Merged
merged 1 commit into from
Feb 18, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions proto/server/configEvtHandler.go
Original file line number Diff line number Diff line change
Expand Up @@ -510,9 +510,9 @@ func compareNssai(sNssai *models.Snssai,

func convertToString(val uint64) string {
var mbVal, gbVal, kbVal uint64
kbVal = val / 1024
mbVal = val / 1048576
gbVal = val / 1073741824
kbVal = val / 1000
mbVal = val / 1000000
gbVal = val / 1000000000
var retStr string
if gbVal != 0 {
retStr = strconv.FormatUint(uint64(gbVal), 10) + " Gbps"
Expand All @@ -524,7 +524,6 @@ func convertToString(val uint64) string {
retStr = strconv.FormatUint(uint64(val), 10) + " bps"
}

fmt.Println("convertToString value ", val, retStr)
return retStr
}

Expand Down