mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
don't queue the complete window update, but only the stream ID
This commit is contained in:
parent
15ab0ae443
commit
d195085f65
13 changed files with 324 additions and 77 deletions
|
@ -140,8 +140,8 @@ func (s *receiveStream) Read(p []byte) (int, error) {
|
|||
s.flowController.AddBytesRead(protocol.ByteCount(m))
|
||||
}
|
||||
// this call triggers the flow controller to increase the flow control window, if necessary
|
||||
if offset := s.flowController.GetWindowUpdate(); offset != 0 {
|
||||
s.sender.onHasWindowUpdate(s.streamID, offset)
|
||||
if s.flowController.HasWindowUpdate() {
|
||||
s.sender.onHasWindowUpdate(s.streamID)
|
||||
}
|
||||
|
||||
if s.readPosInFrame >= int(frame.DataLen()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue