fix: vless NeedHandshake mistake

This commit is contained in:
gVisor bot 2023-02-27 09:46:00 +08:00
parent 6b4e46af72
commit e60ce44e7f

View File

@ -433,10 +433,10 @@ func (vc *Conn) Upstream() any {
func (vc *Conn) NeedHandshake() bool {
select {
case <-vc.handshake:
return true
return false
default:
}
return false
return true
}
func (vc *Conn) IsXTLSVisionEnabled() bool {