diff options
| author | Joseph Henry <[email protected]> | 2022-10-09 23:07:16 -0700 |
|---|---|---|
| committer | Joseph Henry <[email protected]> | 2022-10-09 23:07:16 -0700 |
| commit | e1f60e3f838a760f06008c0373b01279421b75c4 (patch) | |
| tree | ed81054bd50ce8005825e07df6b6541fe00cd87f /one.cpp | |
| parent | 5a6c229b2734b6b303fea48bca1eb1f5e4c6e7e7 (diff) | |
Behavioral changes to multipath balance modes (See: #1745 and #1753)
Diffstat (limited to 'one.cpp')
| -rw-r--r-- | one.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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), |
