handleControlStream should not always return true

This commit is contained in:
Toby 2021-04-22 18:09:48 -07:00
parent 0626a3e505
commit 444bb5daec

View file

@ -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) {