mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
queue stream window updates directly from stream.Read
By queueing receive window updates directly from stream.Read, it is no longer necessary to ask every stream for window updates when sending a packet.
This commit is contained in:
parent
74c00a8dd8
commit
c270de3538
8 changed files with 187 additions and 42 deletions
|
@ -139,7 +139,10 @@ func (s *receiveStream) Read(p []byte) (int, error) {
|
|||
if !s.resetRemotely {
|
||||
s.flowController.AddBytesRead(protocol.ByteCount(m))
|
||||
}
|
||||
s.sender.scheduleSending() // so that a possible WINDOW_UPDATE is sent
|
||||
// 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.readPosInFrame >= int(frame.DataLen()) {
|
||||
s.frameQueue.Pop()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue