From ddd8e2d68bed2bd9efb8379a345bd99eaebd3795 Mon Sep 17 00:00:00 2001 From: Hristo Venev Date: Tue, 19 Mar 2019 10:41:42 +0200 Subject: refresh_period = ... -> refresh_sec = ... --- src/main.rs | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index d556064..14018e8 100644 --- a/src/main.rs +++ b/src/main.rs @@ -53,16 +53,12 @@ impl Device { }) } - fn refresh_period(&self) -> Duration { - Duration::from_secs(u64::from(self.update_config.refresh_period)) - } - fn make_config( &self, public_key: &str, ts: SystemTime, ) -> (wg::Config, Vec, SystemTime) { - let mut t_cfg = ts + self.refresh_period(); + let mut t_cfg = ts + Duration::from_secs(1 << 30); let mut sources: Vec<(&Source, &proto::SourceConfig)> = vec![]; for src in self.sources.iter() { if let Some(ref data) = src.data { @@ -100,7 +96,7 @@ impl Device { } pub fn update(&mut self) -> io::Result { - let refresh = self.refresh_period(); + let refresh = Duration::from_secs(u64::from(self.update_config.refresh_sec)); let mut now = Instant::now(); let mut t_refresh = now + refresh; -- cgit