diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2019-05-14 09:09:52 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2019-05-14 09:09:52 +0200 |
commit | 3bf41b06ae6ec9a558d3b1f1f315509ccef97010 (patch) | |
tree | 2d0d03da4e9d344c5de5dc01f11b5900025dff35 /tun/tun_freebsd.go | |
parent | 3147f000897be94066069c1a703272b7e282a015 (diff) |
global: regroup all imports
Diffstat (limited to 'tun/tun_freebsd.go')
-rw-r--r-- | tun/tun_freebsd.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tun/tun_freebsd.go b/tun/tun_freebsd.go index c9c89ef..b7c82cf 100644 --- a/tun/tun_freebsd.go +++ b/tun/tun_freebsd.go @@ -9,12 +9,13 @@ import ( "bytes" "errors" "fmt" - "golang.org/x/net/ipv6" - "golang.org/x/sys/unix" "net" "os" "syscall" "unsafe" + + "golang.org/x/net/ipv6" + "golang.org/x/sys/unix" ) // _TUNSIFHEAD, value derived from sys/net/{if_tun,ioccom}.h |