aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorJake McGinty <me@jake.su>2018-03-09 02:10:39 +0000
committerJake McGinty <me@jake.su>2018-03-09 02:33:29 +0000
commit05502986f83efda46768082a51d00f15563190f5 (patch)
treedd495a11bb8c07352607ebc23cf80e765796f1f3 /src/lib.rs
parenttests: add netns test from wireguard-go repo (diff)
downloadwireguard-rs-05502986f83efda46768082a51d00f15563190f5.tar.xz
wireguard-rs-05502986f83efda46768082a51d00f15563190f5.zip
bench: fix build
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 76304dc..a693518 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -38,18 +38,18 @@ extern crate treebitmap;
extern crate x25519_dalek;
pub mod interface;
+pub mod peer;
+pub mod noise;
+pub mod time;
+pub mod types;
-mod udp;
-mod message;
+mod anti_replay;
mod consts;
mod cookie;
mod error;
-mod noise;
-mod peer;
-mod types;
-mod anti_replay;
+mod ip_packet;
+mod message;
mod router;
-mod time;
mod timer;
-mod ip_packet;
+mod udp;
mod xchacha20poly1305;