[Fix]Vless tls must not be true

This commit is contained in:
gVisor bot 2021-11-17 19:09:01 +08:00
parent 6a72feb8b5
commit 1100475326

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 && option.Network =="grpc"{
return nil, fmt.Errorf("TLS must be true with vless-grpc")
}
var addons *vless.Addons
if option.Network != "ws" && len(option.Flow) >= 16 {