mirror of
https://github.com/EasyTier/EasyTier.git
synced 2026-05-10 07:55:36 +00:00
8e1d079142
This may helps games to find rooms in virtual network. - add opt-in Windows UDP broadcast relay config flag and CLI/env plumbing - capture local UDP broadcasts with Windows raw sockets, normalize packets, and inject them via PeerManager
16 lines
262 B
Rust
16 lines
262 B
Rust
pub mod dns_server;
|
|
#[allow(clippy::module_inception)]
|
|
pub mod instance;
|
|
|
|
pub mod listeners;
|
|
|
|
mod public_ipv6_provider;
|
|
|
|
pub mod proxy_cidrs_monitor;
|
|
|
|
#[cfg(feature = "tun")]
|
|
pub mod virtual_nic;
|
|
|
|
#[cfg(any(windows, test))]
|
|
pub(crate) mod windows_udp_broadcast;
|