Style: format code

This commit is contained in:
Arthur Morgan 2021-09-20 21:00:55 +08:00
parent ab927d2cca
commit ffc2f7c4e2
78 changed files with 112 additions and 39 deletions

View file

@ -1,3 +1,4 @@
//go:build linux
// +build linux
package dokodemo

View file

@ -1,3 +1,4 @@
//go:build !linux
// +build !linux
package dokodemo

View file

@ -4,6 +4,7 @@ import (
"testing"
"github.com/google/go-cmp/cmp"
"github.com/xtls/xray-core/common"
"github.com/xtls/xray-core/common/buf"
"github.com/xtls/xray-core/common/net"

View file

@ -13,6 +13,8 @@ import (
"sync"
"time"
"golang.org/x/crypto/chacha20poly1305"
"github.com/xtls/xray-core/common"
"github.com/xtls/xray-core/common/bitmask"
"github.com/xtls/xray-core/common/buf"
@ -23,7 +25,6 @@ import (
"github.com/xtls/xray-core/common/task"
"github.com/xtls/xray-core/proxy/vmess"
vmessaead "github.com/xtls/xray-core/proxy/vmess/aead"
"golang.org/x/crypto/chacha20poly1305"
)
type sessionID struct {

View file

@ -31,7 +31,7 @@ import (
)
var (
aeadForced = false
aeadForced = false
aeadForced2022 = false
)