mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
queue STREAM_BLOCKED frames from the stream, when popping a STREAM frame
This commit is contained in:
parent
1514e42e11
commit
d49ad2d0cc
9 changed files with 86 additions and 92 deletions
|
@ -145,6 +145,14 @@ func (s *sendStream) PopStreamFrame(maxBytes protocol.ByteCount) *wire.StreamFra
|
|||
}
|
||||
if frame.FinBit {
|
||||
s.finSent = true
|
||||
} else if s.streamID != s.version.CryptoStreamID() { // TODO(#657): Flow control for the crypto stream
|
||||
if isBlocked, offset := s.flowController.IsBlocked(); isBlocked {
|
||||
s.queueControlFrame(&wire.StreamBlockedFrame{
|
||||
StreamID: s.streamID,
|
||||
Offset: offset,
|
||||
})
|
||||
s.onData()
|
||||
}
|
||||
}
|
||||
return frame
|
||||
}
|
||||
|
@ -228,10 +236,6 @@ func (s *sendStream) HandleMaxStreamDataFrame(frame *wire.MaxStreamDataFrame) {
|
|||
s.flowController.UpdateSendWindow(frame.ByteOffset)
|
||||
}
|
||||
|
||||
func (s *sendStream) IsFlowControlBlocked() (bool, protocol.ByteCount) {
|
||||
return s.flowController.IsBlocked()
|
||||
}
|
||||
|
||||
// must be called after locking the mutex
|
||||
func (s *sendStream) handleStopSendingFrameImpl(frame *wire.StopSendingFrame) {
|
||||
writeErr := streamCanceledError{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue