2 writes to InitialWindowSize
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\Http2\Http2Connection.cs (1)
186
_serverSettings.
InitialWindowSize
= (uint)http2Limits.InitialStreamWindowSize;
src\Shared\ServerInfrastructure\Http2\Http2PeerSettings.cs (1)
74
InitialWindowSize
= value;
10 references to InitialWindowSize
Microsoft.AspNetCore.Server.Kestrel.Core (10)
Internal\Http2\Http2Connection.cs (2)
1009
var previousInitialWindowSize = (int)_clientSettings.
InitialWindowSize
;
1026
var windowSizeDifference = (int)_clientSettings.
InitialWindowSize
- previousInitialWindowSize;
Internal\Http2\Http2OutputProducer.cs (1)
77
_streamWindow = context.ClientPeerSettings.
InitialWindowSize
;
Internal\Http2\Http2Stream.cs (5)
72
context.ServerPeerSettings.
InitialWindowSize
,
73
context.ServerPeerSettings.
InitialWindowSize
/ 2);
84
_http2Output.StreamReset(context.ClientPeerSettings.
InitialWindowSize
);
654
pauseWriterThreshold: _context.ServerPeerSettings.
InitialWindowSize
+ 1,
655
resumeWriterThreshold: _context.ServerPeerSettings.
InitialWindowSize
+ 1,
src\Shared\ServerInfrastructure\Http2\Http2PeerSettings.cs (2)
120
if (
InitialWindowSize
!= DefaultInitialWindowSize)
122
list.Add(new Http2PeerSetting(Http2SettingsParameter.SETTINGS_INITIAL_WINDOW_SIZE,
InitialWindowSize
));