diff options
Diffstat (limited to 'tun/tun_darwin.go')
-rw-r--r-- | tun/tun_darwin.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tun/tun_darwin.go b/tun/tun_darwin.go index 2afe9de..f7cf8e8 100644 --- a/tun/tun_darwin.go +++ b/tun/tun_darwin.go @@ -7,13 +7,14 @@ package tun import ( "fmt" - "golang.org/x/net/ipv6" - "golang.org/x/sys/unix" "io/ioutil" "net" "os" "syscall" "unsafe" + + "golang.org/x/net/ipv6" + "golang.org/x/sys/unix" ) const utunControlName = "com.apple.net.utun_control" |