| 14 | /// Wraps around an NTP feed-forward clock-sync algorithm |
| 15 | #[derive(Debug, Clone, PartialEq)] |
| 16 | pub struct NtpSource { |
| 17 | source_address: SocketAddr, |
| 18 | inner: ff::Ntp, |
| 19 | } |
| 20 | |
| 21 | impl NtpSource { |
| 22 | const POLL_INTERVAL: Duration = Duration::from_secs(16); |
no outgoing calls
no test coverage detected