aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosh Bleecher Snyder <josh@tailscale.com>2021-01-19 13:42:45 -0800
committerJason A. Donenfeld <Jason@zx2c4.com>2021-01-20 20:03:40 +0100
commit86a58b51c027feb3bf8836359fb3adf1c436c53d (patch)
tree54179afe644e992c3d4cf6a2d736b1aea77e0e5b
parentdevice: remove unused trie test code (diff)
downloadwireguard-go-86a58b51c027feb3bf8836359fb3adf1c436c53d.tar.xz
wireguard-go-86a58b51c027feb3bf8836359fb3adf1c436c53d.zip
device: remove unused fields from DummyDatagram and DummyBind
Signed-off-by: Josh Bleecher Snyder <josh@tailscale.com>
-rw-r--r--device/bind_test.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/device/bind_test.go b/device/bind_test.go
index 339adbe..6c5c7f0 100644
--- a/device/bind_test.go
+++ b/device/bind_test.go
@@ -14,14 +14,11 @@ import (
type DummyDatagram struct {
msg []byte
endpoint conn.Endpoint
- world bool // better type
}
type DummyBind struct {
in6 chan DummyDatagram
- ou6 chan DummyDatagram
in4 chan DummyDatagram
- ou4 chan DummyDatagram
closed bool
}