vortix 0.3.1

Terminal UI for WireGuard and OpenVPN with real-time telemetry and leak guarding
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Windows route table stub (plan 008 U4).
//!
//! Real impl would call `Get-NetRoute` or `GetIpForwardTable` from IP
//! Helper. Today returns `None` (no known default gateway).

use crate::vortix_core::ports::route_table::RouteTable;

#[derive(Debug, Clone, Default)]
pub struct WindowsRouteTable;

impl RouteTable for WindowsRouteTable {
    fn default_gateway() -> Option<String> {
        None
    }
}