//! Userspace egress tunnel.
//!
//! Routes a sandboxed container's internet egress through npxc over `WireGuard`
//! so npxc can filter it. The container runs on a host-only (`--internal`)
//! network with no NAT route to the internet; its only path out is a `WireGuard`
//! tunnel terminated by npxc, which decrypts the traffic and forwards allowed
//! flows to real host sockets.
//!
//! Layers:
//! - [`keys`] — `WireGuard` key material (`Curve25519` keypairs, base64 encoding).
//! - [`wg`] — the `WireGuard` transport state machine over `boringtun`.
//! - [`device`] — an `ipstack` packet device backed by the tunnel over UDP.
//! - [`policy`] — the default-deny egress allowlist.
//! - [`peek`] — connection-time TLS SNI / HTTP `Host` extraction.
//! - [`dns`] — in-tunnel DNS pinning scoped to the allowlist.
pub use WgDevice;
pub use ;
pub use WgKeypair;
pub use ;
pub use WgTunnel;