aboutsummaryrefslogtreecommitdiffstats
path: root/src/platform/mod.rs
blob: ecd559a546dc637b720aa3d90d3df2d19870737e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod endpoint;

pub mod bind;
pub mod tun;

pub use endpoint::Endpoint;

#[cfg(target_os = "linux")]
mod linux;

#[cfg(test)]
pub mod dummy;

#[cfg(target_os = "linux")]
pub use linux::LinuxTun as TunInstance;