summaryrefslogtreecommitdiffstats
path: root/src/platform/dummy/mod.rs
blob: 2d2e7c6eee28d0f8310cfee664a2d9a106821d99 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
mod udp;
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 endpoint::*;
pub use tun::*;
pub use udp::*;