mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +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
|
@ -18,8 +18,9 @@ import (
|
|||
type mockGenericStream struct {
|
||||
num protocol.StreamNum
|
||||
|
||||
closed bool
|
||||
closeErr error
|
||||
closed bool
|
||||
closeErr error
|
||||
sendWindow protocol.ByteCount
|
||||
}
|
||||
|
||||
func (s *mockGenericStream) closeForShutdown(err error) {
|
||||
|
@ -27,6 +28,10 @@ func (s *mockGenericStream) closeForShutdown(err error) {
|
|||
s.closeErr = err
|
||||
}
|
||||
|
||||
func (s *mockGenericStream) updateSendWindow(limit protocol.ByteCount) {
|
||||
s.sendWindow = limit
|
||||
}
|
||||
|
||||
var _ = Describe("Streams Map (incoming)", func() {
|
||||
var (
|
||||
m *incomingItemsMap
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue