mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 20:47:38 +03:00
handleControlStream should not always return true
This commit is contained in:
parent
0626a3e505
commit
444bb5daec
1 changed files with 1 additions and 1 deletions
|
@ -140,7 +140,7 @@ func (c *Client) handleControlStream(qs quic.Session, stream quic.Stream) (bool,
|
|||
if sh.OK && c.congestionFactory != nil {
|
||||
qs.SetCongestionControl(c.congestionFactory(sh.Rate.RecvBPS))
|
||||
}
|
||||
return true, sh.Message, nil
|
||||
return sh.OK, sh.Message, nil
|
||||
}
|
||||
|
||||
func (c *Client) handleMessage(qs quic.Session) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue