[Fix]Vless tls must not be true

This commit is contained in:
gVisor bot 2021-11-17 17:56:24 +08:00
parent e69c54cfcd
commit 6a72feb8b5

View File

@ -292,9 +292,9 @@ func (uc *vlessPacketConn) ReadFrom(b []byte) (int, net.Addr, error) {
}
func NewVless(option VlessOption) (*Vless, error) {
if !option.TLS {
return nil, fmt.Errorf("TLS must be true with vless")
}
//if !option.TLS {
// return nil, fmt.Errorf("TLS must be true with vless")
//}
var addons *vless.Addons
if option.Network != "ws" && len(option.Flow) >= 16 {