mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
rename sendStream.handleMaxStreamDataFrame to updateSendWindow
This commit is contained in:
parent
3bce408c8d
commit
c27f5a55b3
7 changed files with 33 additions and 40 deletions
|
@ -20,7 +20,7 @@ type sendStreamI interface {
|
|||
hasData() bool
|
||||
popStreamFrame(maxBytes protocol.ByteCount) (*ackhandler.Frame, bool)
|
||||
closeForShutdown(error)
|
||||
handleMaxStreamDataFrame(*wire.MaxStreamDataFrame)
|
||||
updateSendWindow(protocol.ByteCount)
|
||||
}
|
||||
|
||||
type sendStream struct {
|
||||
|
@ -437,12 +437,12 @@ func (s *sendStream) cancelWriteImpl(errorCode protocol.ApplicationErrorCode, wr
|
|||
}
|
||||
}
|
||||
|
||||
func (s *sendStream) handleMaxStreamDataFrame(frame *wire.MaxStreamDataFrame) {
|
||||
func (s *sendStream) updateSendWindow(limit protocol.ByteCount) {
|
||||
s.mutex.Lock()
|
||||
hasStreamData := s.dataForWriting != nil || s.nextFrame != nil
|
||||
s.mutex.Unlock()
|
||||
|
||||
s.flowController.UpdateSendWindow(frame.MaximumStreamData)
|
||||
s.flowController.UpdateSendWindow(limit)
|
||||
if hasStreamData {
|
||||
s.sender.onHasStreamData(s.streamID)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue