mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-03-22 07:41:51 +00:00
Closes #5846 Will be moved down to the IPC service eventually. The goal for connection roaming is not for totally transparent "Change Wi-Fi networks without dropping SSH" handoffs, but just for Firezone to re-connect itself as quickly as possible so that everything above us can re-connect as quickly as it times out, and won't be hung up with a broken tunnel.
17 lines
392 B
Rust
17 lines
392 B
Rust
#[cfg(target_os = "linux")]
|
|
#[path = "network_changes/linux.rs"]
|
|
#[allow(clippy::unnecessary_wraps)]
|
|
mod imp;
|
|
|
|
#[cfg(target_os = "macos")]
|
|
#[path = "network_changes/macos.rs"]
|
|
#[allow(clippy::unnecessary_wraps)]
|
|
mod imp;
|
|
|
|
#[cfg(target_os = "windows")]
|
|
#[path = "network_changes/windows.rs"]
|
|
#[allow(clippy::unnecessary_wraps)]
|
|
mod imp;
|
|
|
|
pub use imp::{new_dns_notifier, new_network_notifier};
|