Windows port Phase 2: cpal device enumeration #4

Open
mollusk wants to merge 15 commits from windows-port-phase2 into windows-port-phase1
Showing only changes of commit 4d07e03395 - Show all commits
+20 -11
View File
@@ -1816,17 +1816,26 @@ async fn run_core_loop(
} }
CoreCommand::SetNetworkMode(mode) => { CoreCommand::SetNetworkMode(mode) => {
network_mode = mode; // Skip when the posture is unchanged. The GUI re-sends the saved
// Rebuild the persistent stack to the new posture immediately if // network mode as part of its startup config-sync, and that mode
// idle; if a call is active, defer to the next Leave/Join so the // usually already matches the freshly-built stack — rebuilding the
// live call isn't disrupted (preserves "applies on next join"). // iroh endpoint for an identical posture just churns the network
if active_session.is_none() { // and adds a needless ~1s teardown+rebuild bounce at every launch
let lookup = net.memory_lookup.clone(); // (seen on both Linux and Windows/Wine). A real change still
net.shutdown().await; // rebuilds exactly as before.
let publish = presence_mode.lock().unwrap().publishes_to_discovery(); if mode != network_mode {
net = build_net_stack(secret_key.clone(), network_mode, lookup, friends_handler.clone(), publish).await?; network_mode = mode;
} else { // Rebuild the persistent stack to the new posture immediately if
net_rebuild_pending = true; // idle; if a call is active, defer to the next Leave/Join so the
// live call isn't disrupted (preserves "applies on next join").
if active_session.is_none() {
let lookup = net.memory_lookup.clone();
net.shutdown().await;
let publish = presence_mode.lock().unwrap().publishes_to_discovery();
net = build_net_stack(secret_key.clone(), network_mode, lookup, friends_handler.clone(), publish).await?;
} else {
net_rebuild_pending = true;
}
} }
} }