diff options
Diffstat (limited to 'device/receive.go')
-rw-r--r-- | device/receive.go | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/device/receive.go b/device/receive.go index 747a188..22870f2 100644 --- a/device/receive.go +++ b/device/receive.go @@ -8,14 +8,15 @@ package device import ( "bytes" "encoding/binary" - "golang.org/x/crypto/chacha20poly1305" - "golang.org/x/net/ipv4" - "golang.org/x/net/ipv6" "net" "strconv" "sync" "sync/atomic" "time" + + "golang.org/x/crypto/chacha20poly1305" + "golang.org/x/net/ipv4" + "golang.org/x/net/ipv6" ) type QueueHandshakeElement struct { |