]> code.octet-stream.net Git - netwatcher/blobdiff - src/watch_win.rs
Make WatchHandle Send on Apple
[netwatcher] / src / watch_win.rs
index edd2fe38d2f96587ed46cddb7b5fe714826317b0..3a4a30142186c069af59b270a83458ec937e8c79 100644 (file)
@@ -60,10 +60,8 @@ pub(crate) fn watch_interfaces<F: FnMut(Update) + Send + 'static>(
     };
     match res {
         NO_ERROR => {
     };
     match res {
         NO_ERROR => {
-            // Trigger an initial update.
-            // This is allowed to race with true updates because it
-            // will always calculate a diff and discard no-ops.
-            handle_notif(&mut state.lock().unwrap());
+            // Trigger an initial update
+            handle_notif(&mut state.lock().unwrap(), crate::list::list_interfaces()?);
             // Then return the handle
             Ok(WatchHandle { hnd, _state: state })
         }
             // Then return the handle
             Ok(WatchHandle { hnd, _state: state })
         }
@@ -81,18 +79,19 @@ unsafe extern "system" fn notif(
 ) {
     let state_ptr = ctx as *const Mutex<WatchState>;
     unsafe {
 ) {
     let state_ptr = ctx as *const Mutex<WatchState>;
     unsafe {
-        let state_guard = &mut *state_ptr.as_ref()
+        let state_guard = &mut *state_ptr
+            .as_ref()
             .expect("callback ctx should never be null")
             .lock()
             .unwrap();
             .expect("callback ctx should never be null")
             .lock()
             .unwrap();
-        handle_notif(state_guard);
+        let Ok(new_list) = crate::list::list_interfaces() else {
+            return;
+        };
+        handle_notif(state_guard, new_list);
     }
 }
 
     }
 }
 
-fn handle_notif(state: &mut WatchState) {
-    let Ok(new_list) = crate::list::list_interfaces() else {
-        return;
-    };
+fn handle_notif(state: &mut WatchState, new_list: List) {
     if new_list == state.prev_list {
         return;
     }
     if new_list == state.prev_list {
         return;
     }