aboutsummaryrefslogtreecommitdiff
path: root/src/state.rs
diff options
context:
space:
mode:
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,
}