@@ -19,7 +19,7 @@ private enum ConnectionState : byte
19
19
20
20
private const int MaxFrameHeaderLength = 9 ;
21
21
private const uint MaxStreamId = uint . MaxValue >> 1 ;
22
- internal const uint MaxWindowUpdateSize = 2_147_483_647 ;
22
+ internal const uint MaxWindowUpdateSize = 2_147_483_647 ; // int.MaxValue
23
23
24
24
private static ReadOnlySpan < byte > PrefaceBytes => "PRI * HTTP/2.0\r \n \r \n SM\r \n \r \n "u8 ;
25
25
@@ -36,6 +36,8 @@ private enum ConnectionState : byte
36
36
private ConcurrentDictionary < uint , Http2Stream > _streams ;
37
37
private Http2Stream _currentStream ;
38
38
private volatile bool _aborted ;
39
+ private FlowControlSize _serverWindow ;
40
+ private FlowControlSize _clientWindow ;
39
41
40
42
public Http2Connection ( CHttpConnectionContext connectionContext )
41
43
{
@@ -49,13 +51,17 @@ public Http2Connection(CHttpConnectionContext connectionContext)
49
51
_inputStream = connectionContext . Transport ! ;
50
52
_aborted = false ;
51
53
_readFrame = new ( ) ;
54
+ _serverWindow = new ( _context . ServerOptions . ServerConnectionFlowControlSize + CHttpServerOptions . InitialStreamFlowControlSize ) ;
55
+ _clientWindow = new ( _h2Settings . InitialWindowSize ) ;
52
56
}
53
57
54
58
internal Http2ResponseWriter ? ResponseWriter => _responseWriter ;
55
59
60
+ internal CHttpServerOptions ServerOptions => _context . ServerOptions ;
61
+
56
62
public async Task ProcessRequestAsync < TContext > ( IHttpApplication < TContext > application ) where TContext : notnull
57
63
{
58
- _writer = new FrameWriter ( _context , _h2Settings . InitialWindowSize ) ;
64
+ _writer = new FrameWriter ( _context ) ;
59
65
_responseWriter = new Http2ResponseWriter ( _writer , _h2Settings . MaxFrameSize ) ;
60
66
CancellationTokenSource cts = new ( ) ;
61
67
var responseWriting = _responseWriter . RunAsync ( cts . Token ) ;
@@ -64,7 +70,9 @@ public async Task ProcessRequestAsync<TContext>(IHttpApplication<TContext> appli
64
70
{
65
71
ValidateTlsRequirements ( ) ;
66
72
await ReadPreface ( ) ;
67
- _writer . WriteSettings ( _h2Settings ) ;
73
+ _writer . WriteSettings ( new Http2SettingsPayload ( ) { InitialWindowSize = _context . ServerOptions . ServerStreamFlowControlSize } ) ;
74
+ _writer . WriteWindowUpdate ( 0 , _context . ServerOptions . ServerConnectionFlowControlSize ) ;
75
+ await _writer . FlushAsync ( ) ;
68
76
69
77
while ( ! _aborted )
70
78
{
@@ -167,6 +175,7 @@ private async ValueTask ProcessDataFrame()
167
175
. Slice ( 0 , ( int ) _readFrame . PayloadLength ) ; // framesize max
168
176
await _inputStream . ReadExactlyAsync ( buffer ) ;
169
177
httpStream . RequestPipe . Advance ( buffer . Length - paddingLength ) ; // Padding is read but not advanced.
178
+ await httpStream . RequestPipe . FlushAsync ( ) ;
170
179
171
180
if ( _readFrame . EndStream )
172
181
{
@@ -236,7 +245,7 @@ private async ValueTask ProcessWindowUpdateFrame()
236
245
if ( streamId > 0 )
237
246
_streams [ _readFrame . StreamId ] . UpdateWindowSize ( updateSize ) ;
238
247
else
239
- _writer ! . UpdateConnectionWindowSize ( updateSize ) ;
248
+ _clientWindow . ReleaseSize ( updateSize ) ;
240
249
}
241
250
242
251
private async Task ReadFrameHeader ( )
@@ -259,7 +268,7 @@ private async ValueTask ProcessSettingsFrame()
259
268
if ( _readFrame . Flags == 1 ) // SETTING ACK
260
269
return ;
261
270
if ( _h2Settings . SettingsReceived )
262
- throw new Http2ConnectionException ( "Don't allow settings to change mid-connection" ) ;
271
+ throw new Http2ConnectionException ( "Don't allow settings to change mid-connection" ) ; // against the protocol
263
272
264
273
var payloadLength = ( int ) _readFrame . PayloadLength ;
265
274
var memory = _buffer . AsMemory ( 0 , payloadLength ) ;
@@ -284,7 +293,7 @@ private async ValueTask ProcessSettingsFrame()
284
293
_h2Settings . MaxConcurrentStream = Math . Min ( _h2Settings . MaxConcurrentStream , settingValue ) ;
285
294
break ;
286
295
case 4 :
287
- _h2Settings . InitialWindowSize = Math . Min ( _h2Settings . InitialWindowSize , settingValue ) ;
296
+ _h2Settings . InitialWindowSize = settingValue ;
288
297
break ;
289
298
case 5 :
290
299
_h2Settings . MaxFrameSize = Math . Min ( _h2Settings . MaxFrameSize , settingValue ) ;
0 commit comments