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
16
//! Windows network stats stub (plan 008 U4).
//!
//! Real impl would query `Get-NetAdapterStatistics` / IP Helper. Today
//! it reports zero bytes in both directions; telemetry consumers
//! render this as "no throughput yet."

use crate::vortix_core::ports::network_stats::NetworkStats;

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

impl NetworkStats for WindowsNetworkStats {
    fn get_total_bytes() -> (u64, u64) {
        (0, 0)
    }
}