From: Josh Bleecher Snyder Date: Tue, 19 Jan 2021 21:42:45 +0000 (-0800) Subject: device: remove unused fields from DummyDatagram and DummyBind X-Git-Tag: 0.0.20210212~89 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=86a58b51c027feb3bf8836359fb3adf1c436c53d;p=thirdparty%2Fwireguard-go.git device: remove unused fields from DummyDatagram and DummyBind Signed-off-by: Josh Bleecher Snyder --- 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 }