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

/* 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 endpoint::*;
pub use tun::*;
pub use udp::*;