wlan_mlme/client/
lost_bss.rs1#[derive(Debug)]
8pub struct LostBssCounter {
9 beacon_period: zx::MonotonicDuration,
11
12 full_timeout: zx::MonotonicDuration,
15
16 time_since_last_beacon: zx::MonotonicDuration,
18}
19
20impl LostBssCounter {
25 pub fn start(beacon_period: zx::MonotonicDuration, full_timeout_beacon_count: u32) -> Self {
26 Self {
27 beacon_period: beacon_period.clone(),
28 full_timeout: beacon_period * full_timeout_beacon_count as i64,
29 time_since_last_beacon: zx::MonotonicDuration::from_nanos(0),
30 }
31 }
32
33 pub fn reset(&mut self) {
34 self.time_since_last_beacon = zx::MonotonicDuration::from_nanos(0);
35 }
36
37 pub fn should_deauthenticate(&self) -> bool {
42 self.time_since_last_beacon >= self.full_timeout
43 }
44
45 pub fn add_beacon_interval(&mut self, beacon_intervals_since_last_timeout: u32) {
46 self.time_since_last_beacon += self.beacon_period * beacon_intervals_since_last_timeout;
47 }
48}
49
50#[cfg(test)]
51mod tests {
52 use super::*;
53 use wlan_common::time::TimeUnit;
54
55 const TEST_BEACON_PERIOD: zx::MonotonicDuration =
56 zx::MonotonicDuration::from_micros(TimeUnit(42).into_micros());
57 const TEST_TIMEOUT_BCN_COUNT: u32 = 1000;
58
59 #[test]
60 fn test_single_uninterrupted_period() {
61 let mut counter = LostBssCounter::start(TEST_BEACON_PERIOD, TEST_TIMEOUT_BCN_COUNT);
62 counter.add_beacon_interval(TEST_TIMEOUT_BCN_COUNT - 1);
64 assert!(!counter.should_deauthenticate());
65 counter.add_beacon_interval(1);
67 assert!(counter.should_deauthenticate());
68 }
69
70 #[test]
71 fn test_beacon_received_midway() {
72 let mut counter = LostBssCounter::start(TEST_BEACON_PERIOD, TEST_TIMEOUT_BCN_COUNT);
73 counter.add_beacon_interval(TEST_TIMEOUT_BCN_COUNT - 1);
74 assert!(!counter.should_deauthenticate());
75
76 counter.reset();
78
79 counter.add_beacon_interval(1);
82 assert!(!counter.should_deauthenticate());
83 counter.add_beacon_interval(TEST_TIMEOUT_BCN_COUNT - 1);
85 assert!(counter.should_deauthenticate());
86 }
87}