diff options
author | Josh Bleecher Snyder <josh@tailscale.com> | 2021-01-19 13:42:45 -0800 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2021-01-20 20:03:40 +0100 |
commit | 86a58b51c027feb3bf8836359fb3adf1c436c53d (patch) | |
tree | 54179afe644e992c3d4cf6a2d736b1aea77e0e5b | |
parent | 6a2ecb581b5940ab82814fe836cb599705da9b8a (diff) |
device: remove unused fields from DummyDatagram and DummyBind
Signed-off-by: Josh Bleecher Snyder <josh@tailscale.com>
-rw-r--r-- | device/bind_test.go | 3 |
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 } |