diff options
-rw-r--r-- | tun_darwin.go | 2 |
1 files changed, 0 insertions, 2 deletions
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), } |