diff options
author | 2019-11-15 15:32:36 +0100 | |
---|---|---|
committer | 2019-11-15 15:32:36 +0100 | |
commit | 05710c455f1c759cf9bc1a1eaa6307fe564f15cc (patch) | |
tree | c671d703d0db93a9bc8f27d0e2b02d0422120352 /src/platform/mod.rs | |
parent | Initial version of full UAPI parser (diff) | |
download | wireguard-rs-05710c455f1c759cf9bc1a1eaa6307fe564f15cc.tar.xz wireguard-rs-05710c455f1c759cf9bc1a1eaa6307fe564f15cc.zip |
Update UAPI semantics for remove
Diffstat (limited to 'src/platform/mod.rs')
-rw-r--r-- | src/platform/mod.rs | 5 |
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; |