MCPcopy Create free account
hub / github.com/aethersdr/AetherSDR / formatLateArrivals

Function formatLateArrivals

src/gui/NetworkDiagnosticsDialog.cpp:2240–2248  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2238}
2239
2240static QString formatLateArrivals(qint64 latePackets, double latePacketsPerSecond)
2241{
2242 if (latePackets <= 0 && latePacketsPerSecond <= 0.0) {
2243 return "None";
2244 }
2245 return QString("%1 late (%2/s)")
2246 .arg(latePackets)
2247 .arg(latePacketsPerSecond, 0, 'f', 1);
2248}
2249
2250static QStringList audibleSliceLabels(const RadioModel* model)
2251{

Callers 1

refreshMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected