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
//! `vortix-protocol-wireguard`: `WireGuard` `Tunnel` impl.
//!
//! Wraps `wg-quick` for connect/disconnect and uses the binary-side scanner
//! for status readout (until plan #005's async engine migration brings the
//! status path through this crate as well).

#![allow(clippy::missing_errors_doc)]

pub mod parser;
pub mod tunnel;

pub use parser::WgParsedProfile;
pub use tunnel::WgTunnel;