X-Git-Url: https://git.xinqibao.xyz/slstatus.git/blobdiff_plain/74c4f4ebdae8a12fc95840954dde574692234b01..46c4540dd2f6181e77b0800a4e007d78d0162487:/components/netspeeds.c diff --git a/components/netspeeds.c b/components/netspeeds.c index 32e78d6..f0f7455 100644 --- a/components/netspeeds.c +++ b/components/netspeeds.c @@ -25,9 +25,12 @@ if (pscanf(path, "%llu", &rxbytes) != 1) { return NULL; } + if (oldrxbytes == 0) { + return NULL; + } - return oldrxbytes ? fmt_scaled((rxbytes - oldrxbytes) * - 1000 / interval) : NULL; + return fmt_human_2((rxbytes - oldrxbytes) * + 1000 / interval, "B/s"); } const char * @@ -48,9 +51,12 @@ if (pscanf(path, "%llu", &txbytes) != 1) { return NULL; } + if (oldtxbytes == 0) { + return NULL; + } - return oldtxbytes ? fmt_scaled((txbytes - oldtxbytes) * - 1000 / interval) : NULL; + return fmt_human_2((txbytes - oldtxbytes) * + 1000 / interval, "B/s"); } #elif defined(__OpenBSD__) #include @@ -87,9 +93,12 @@ warn("reading 'if_data' failed"); return NULL; } + if (oldrxbytes == 0) { + return NULL; + } - return oldrxbytes ? fmt_scaled((rxbytes - oldrxbytes) * - 1000 / interval) : NULL; + return fmt_human_2((rxbytes - oldrxbytes) * + 1000 / interval, "B/s"); } const char * @@ -120,8 +129,11 @@ warn("reading 'if_data' failed"); return NULL; } + if (oldtxbytes == 0) { + return NULL; + } - return oldtxbytes ? fmt_scaled((txbytes - oldtxbytes) * - 1000 / interval) : NULL; + return fmt_human_2((txbytes - oldtxbytes) * + 1000 / interval, "B/s"); } #endif