aboutsummaryrefslogtreecommitdiff
path: root/src/state.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/state.rs
parentFix line ends (diff)
Remove TTL reply
Diffstat (limited to 'src/state.rs')
-rw-r--r--src/state.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/state.rs b/src/state.rs
index fe1fa4a..10a227f 100644
--- a/src/state.rs
+++ b/src/state.rs
@@ -3,7 +3,7 @@ use std::time::{SystemTime, UNIX_EPOCH};
pub enum State {
NotYetReceived { time_sent: u64 },
SendError,
- Received { rtt: u64, ttl: u32 },
+ Received { rtt: u64 },
Lost,
}