From afe403f273997dd309af82d5f6df4a765ea29e1b Mon Sep 17 00:00:00 2001 From: ache Date: Wed, 5 Aug 2026 10:42:53 +0200 Subject: Remove TTL reply --- src/print.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'src/print.rs') 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 ); } -- cgit v1.3-2-g11bf