From c5fa3de24c03872c582718185c4b35737cdf13ea Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Sun, 20 May 2018 06:25:39 +0200 Subject: Remove unused mtu variable --- tun_darwin.go | 2 -- 1 file changed, 2 deletions(-) (limited to 'tun_darwin.go') diff --git a/tun_darwin.go b/tun_darwin.go index 64e4780..a74dbac 100644 --- a/tun_darwin.go +++ b/tun_darwin.go @@ -40,7 +40,6 @@ type NativeTun struct { name string fd *os.File rwcancel *rwcancel.RWCancel - mtu int events chan TUNEvent errors chan error routeSocket int @@ -168,7 +167,6 @@ func CreateTUNFromFile(file *os.File) (TUNDevice, error) { tun := &NativeTun{ fd: file, - mtu: 1500, events: make(chan TUNEvent, 10), errors: make(chan error, 1), } -- cgit v1.2.3-59-g8ed1b