summaryrefslogtreecommitdiff
path: root/one.cpp
diff options
context:
space:
mode:
authorJoseph Henry <[email protected]>2022-10-09 23:07:16 -0700
committerJoseph Henry <[email protected]>2022-10-09 23:07:16 -0700
commite1f60e3f838a760f06008c0373b01279421b75c4 (patch)
treeed81054bd50ce8005825e07df6b6541fe00cd87f /one.cpp
parent5a6c229b2734b6b303fea48bca1eb1f5e4c6e7e7 (diff)
Behavioral changes to multipath balance modes (See: #1745 and #1753)
Diffstat (limited to 'one.cpp')
-rw-r--r--one.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/one.cpp b/one.cpp
index 9a336393..62710547 100644
--- a/one.cpp
+++ b/one.cpp
@@ -637,20 +637,20 @@ static int cli(int argc,char **argv)
);
}
printf("\nidx lat pdv "
- "plr per speed alloc "
+ "plr per capacity qual "
"rx_age tx_age eligible bonded\n");
for(int i=0; i<100; i++) { printf("-"); }
printf("\n");
for (int i=0; i<p.size(); i++)
{
- printf("%2d: %8.2f %8.2f %7.4f %7.4f %7d %6.2f %11d %11d %9d %7d\n",
+ printf("%2d: %8.2f %8.2f %7.4f %7.4f %10d %7.4f %11d %11d %9d %7d\n",
i,
OSUtils::jsonDouble(p[i]["latencyMean"], 0),
OSUtils::jsonDouble(p[i]["latencyVariance"], 0),
OSUtils::jsonDouble(p[i]["packetLossRatio"], 0),
OSUtils::jsonDouble(p[i]["packetErrorRatio"], 0),
(int)OSUtils::jsonInt(p[i]["givenLinkSpeed"], 0),
- OSUtils::jsonDouble(p[i]["allocation"], 0),
+ OSUtils::jsonDouble(p[i]["relativeQuality"], 0),
(int)OSUtils::jsonInt(p[i]["lastInAge"], 0),
(int)OSUtils::jsonInt(p[i]["lastOutAge"], 0),
(int)OSUtils::jsonInt(p[i]["eligible"],0),