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:
Marten Seemann 2021-03-12 15:09:50 +08:00
parent c27f5a55b3
commit 7cd4dea764
8 changed files with 85 additions and 2 deletions

View file

@ -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 {