diff options
| author | ache <ache@ache.one> | 2026-08-05 10:42:53 +0200 |
|---|---|---|
| committer | ache <ache@ache.one> | 2026-08-05 10:42:53 +0200 |
| commit | afe403f273997dd309af82d5f6df4a765ea29e1b (patch) | |
| tree | 778630158b364d4ceaa038fbb48d79bfc92410ff /src/state.rs | |
| parent | Fix line ends (diff) | |
Remove TTL reply
Diffstat (limited to 'src/state.rs')
| -rw-r--r-- | src/state.rs | 2 |
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, } |