elaeis4/quicktap/src/drivers/mod.rs
2022-12-18 23:15:28 -05:00

7 lines
No EOL
155 B
Rust

//! Cross-platform tun/tap drivers for various platforms.
#[cfg(unix)]
#[path = "linux.rs"]
pub mod tun; // Tun/tap drivers for Linux
pub mod tungeneric;