mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
set the offset in BLOCKED and STREAM_BLOCKED frames
This commit is contained in:
parent
69998c19cb
commit
00edfb7461
12 changed files with 51 additions and 33 deletions
|
@ -25,7 +25,7 @@ type streamI interface {
|
|||
// methods needed for flow control
|
||||
GetWindowUpdate() protocol.ByteCount
|
||||
HandleMaxStreamDataFrame(*wire.MaxStreamDataFrame)
|
||||
IsFlowControlBlocked() bool
|
||||
IsFlowControlBlocked() (bool, protocol.ByteCount)
|
||||
}
|
||||
|
||||
// A Stream assembles the data from StreamFrames and provides a super-convenient Read-Interface
|
||||
|
@ -484,7 +484,7 @@ func (s *stream) HandleMaxStreamDataFrame(frame *wire.MaxStreamDataFrame) {
|
|||
s.flowController.UpdateSendWindow(frame.ByteOffset)
|
||||
}
|
||||
|
||||
func (s *stream) IsFlowControlBlocked() bool {
|
||||
func (s *stream) IsFlowControlBlocked() (bool, protocol.ByteCount) {
|
||||
return s.flowController.IsBlocked()
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue