async-tun 0.10.1

Asynchronous allocation of TUN/TAP devices using async-std
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[cfg(target_os = "linux")]
mod linux {
    pub mod address;
    pub mod interface;
    pub mod params;
    pub mod request;
}

mod builder;
mod tun;

pub mod result;

pub use self::builder::TunBuilder;
pub use self::tun::Tun;