aboutsummaryrefslogtreecommitdiff
path: root/src/print.rs
diff options
context:
space:
mode:
authorache <ache@ache.one>2026-08-05 10:42:53 +0200
committerache <ache@ache.one>2026-08-05 10:42:53 +0200
commitafe403f273997dd309af82d5f6df4a765ea29e1b (patch)
tree778630158b364d4ceaa038fbb48d79bfc92410ff /src/print.rs
parentFix line ends (diff)
Remove TTL reply
Diffstat (limited to 'src/print.rs')
-rw-r--r--src/print.rs6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/print.rs b/src/print.rs
index 39a4382..de5e508 100644
--- a/src/print.rs
+++ b/src/print.rs
@@ -200,10 +200,9 @@ pub fn print_stats(stats: &Stats) {
let mad_rtt_rounded = stats.mad_rtt.round() as u64;
let mean_rtt_round = stats.avg_rtt.round() as u32;
- let mean_ttl_round = stats.avg_ttl.round() as u32;
println!(
- "{}/{} ({:.1}%) | ⌊{}⌋ ⌈{}⌉ [{}] [Δ{}]ms / ⌊{}⌋ ⌈{}⌉ [{}]{}",
+ "{}/{} ({:.1}%) | ⌊{}⌋ ⌈{}⌉ [{}] [Δ{}]ms{}",
stats.lost,
total,
percent_lost,
@@ -211,9 +210,6 @@ pub fn print_stats(stats: &Stats) {
stats.max_rtt,
mean_rtt_round,
mad_rtt_rounded,
- stats.min_ttl,
- stats.max_ttl,
- mean_ttl_round,
ERASE_LINE_END
);
}