aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorMathias Hall-Andersen <mathias@hall-andersen.dk>2019-09-01 17:16:01 +0200
committerMathias Hall-Andersen <mathias@hall-andersen.dk>2019-09-01 17:16:01 +0200
commit929eadb651ba41bb72ba8f85a0d68c0cbad18661 (patch)
tree98fec908179a23a90205463773eebc6b9377f82c /src/main.rs
parentAdded Bind trait to router (diff)
downloadwireguard-rs-929eadb651ba41bb72ba8f85a0d68c0cbad18661.tar.xz
wireguard-rs-929eadb651ba41bb72ba8f85a0d68c0cbad18661.zip
Outbound cryptkey routing
Diffstat (limited to '')
-rw-r--r--src/main.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index 6d1d2e1..8d92048 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -10,10 +10,9 @@ use hjul::*;
use std::error::Error;
use std::fmt;
use std::net::SocketAddr;
-use std::sync::Arc;
use std::time::Duration;
-use types::{Bind, KeyPair, Tun};
+use types::{Bind, Tun};
#[derive(Debug)]
enum TunError {}