aboutsummaryrefslogtreecommitdiffstats
path: root/src/platform/dummy/mod.rs
blob: 884bd7e5d95d970ad67eb13aab7764c75d62eff3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
mod bind;
mod endpoint;
mod tun;

/* A pure dummy platform available during "test-time"
 *
 * The use of the dummy platform is to enable unit testing of full WireGuard,
 * the configuration interface and the UAPI parser.
 */

pub use bind::*;
pub use endpoint::*;
pub use tun::*;