mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
update the flow control windows of streams opened in 0-RTT
The server might have increased the initial flow control window. We need to make sure to inform all streams opened during during the 0-RTT period.
This commit is contained in:
parent
c27f5a55b3
commit
7cd4dea764
8 changed files with 85 additions and 2 deletions
|
@ -180,6 +180,17 @@ func (m *outgoingUniStreamsMap) SetMaxStream(num protocol.StreamNum) {
|
|||
m.unblockOpenSync()
|
||||
}
|
||||
|
||||
// UpdateSendWindow is called when the peer's transport parameters are received.
|
||||
// Only in the case of a 0-RTT handshake will we have open streams at this point.
|
||||
// We might need to update the send window, in case the server increased it.
|
||||
func (m *outgoingUniStreamsMap) UpdateSendWindow(limit protocol.ByteCount) {
|
||||
m.mutex.Lock()
|
||||
for _, str := range m.streams {
|
||||
str.updateSendWindow(limit)
|
||||
}
|
||||
m.mutex.Unlock()
|
||||
}
|
||||
|
||||
// unblockOpenSync unblocks the next OpenStreamSync go-routine to open a new stream
|
||||
func (m *outgoingUniStreamsMap) unblockOpenSync() {
|
||||
if len(m.openQueue) == 0 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue