summaryrefslogtreecommitdiffstats
path: root/src/platform/dummy/udp.rs
diff options
context:
space:
mode:
authorMathias Hall-Andersen <mathias@hall-andersen.dk>2019-12-21 00:17:31 +0100
committerMathias Hall-Andersen <mathias@hall-andersen.dk>2019-12-21 00:17:31 +0100
commitaabefa50436af8d614520bb219d675953eeba6eb (patch)
tree9186ef07b94f12e75040d5163477ef1e549cee14 /src/platform/dummy/udp.rs
parentConstant renamed to be consistent with kernel WG (diff)
downloadwireguard-rs-aabefa50436af8d614520bb219d675953eeba6eb.tar.xz
wireguard-rs-aabefa50436af8d614520bb219d675953eeba6eb.zip
Remove unused test code.
- make naming consistent with the kernel module. - better distribution of functionality from src/wireguard.rs - more consistent "import pattern" throughout the project. - remove unused test code.
Diffstat (limited to '')
-rw-r--r--src/platform/dummy/udp.rs (renamed from src/platform/dummy/bind.rs)23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/platform/dummy/bind.rs b/src/platform/dummy/udp.rs
index 3146af8..35c905d 100644
--- a/src/platform/dummy/bind.rs
+++ b/src/platform/dummy/udp.rs
@@ -40,29 +40,6 @@ impl fmt::Display for BindError {
}
}
-/* TUN implementation */
-
-#[derive(Debug)]
-pub enum TunError {
- Disconnected,
-}
-
-impl Error for TunError {
- fn description(&self) -> &str {
- "Generic Tun Error"
- }
-
- fn source(&self) -> Option<&(dyn Error + 'static)> {
- None
- }
-}
-
-impl fmt::Display for TunError {
- fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
- write!(f, "Not Possible")
- }
-}
-
#[derive(Clone, Copy)]
pub struct VoidBind {}