aboutsummaryrefslogtreecommitdiffstats
path: root/src/platform/mod.rs
diff options
context:
space:
mode:
authorMathias Hall-Andersen <mathias@hall-andersen.dk>2019-11-15 15:32:36 +0100
committerMathias Hall-Andersen <mathias@hall-andersen.dk>2019-11-15 15:32:36 +0100
commit05710c455f1c759cf9bc1a1eaa6307fe564f15cc (patch)
treec671d703d0db93a9bc8f27d0e2b02d0422120352 /src/platform/mod.rs
parentInitial version of full UAPI parser (diff)
downloadwireguard-rs-05710c455f1c759cf9bc1a1eaa6307fe564f15cc.tar.xz
wireguard-rs-05710c455f1c759cf9bc1a1eaa6307fe564f15cc.zip
Update UAPI semantics for remove
Diffstat (limited to '')
-rw-r--r--src/platform/mod.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/platform/mod.rs b/src/platform/mod.rs
index ecd559a..99707e3 100644
--- a/src/platform/mod.rs
+++ b/src/platform/mod.rs
@@ -2,14 +2,15 @@ mod endpoint;
pub mod bind;
pub mod tun;
+pub mod uapi;
pub use endpoint::Endpoint;
#[cfg(target_os = "linux")]
-mod linux;
+pub mod linux;
#[cfg(test)]
pub mod dummy;
#[cfg(target_os = "linux")]
-pub use linux::LinuxTun as TunInstance;
+pub use linux as plt;