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

pub mod bind;
pub mod tun;
pub mod uapi;

pub use endpoint::Endpoint;

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

#[cfg(test)]
pub mod dummy;

#[cfg(target_os = "linux")]
pub use linux as plt;