//! `vortix-platform-linux`: Linux platform adapters.
//!
//! Implements the capability ports defined in `vortix-core::ports::*`:
//! - `Killswitch` via iptables (preferred) → nftables fallback.
//! - `DnsResolver` via resolvectl → nmcli → /etc/resolv.conf.
//! - `Interface` via `ip addr` + `wg show`.
//! - `NetworkStats` via /proc/net/dev.
//! - `RouteTable` via `ip route show default`.
pub use LinuxDns;
pub use IptablesFirewall;
pub use LinuxInterface;
pub use LinuxNetworkStats;
pub use LinuxRouteTable;
pub use ProcSocketAudit;