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

pub mod tun;
pub mod uapi;
pub mod udp;

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;