2 writes to InitialWindowSize
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\Http2\Http2Connection.cs (1)
190
_serverSettings.
InitialWindowSize
= (uint)http2Limits.InitialStreamWindowSize;
src\aspnetcore\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)
1025
var previousInitialWindowSize = (int)_clientSettings.
InitialWindowSize
;
1042
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
);
663
pauseWriterThreshold: _context.ServerPeerSettings.
InitialWindowSize
+ 1,
664
resumeWriterThreshold: _context.ServerPeerSettings.
InitialWindowSize
+ 1,
src\aspnetcore\src\Shared\ServerInfrastructure\Http2\Http2PeerSettings.cs (2)
120
if (
InitialWindowSize
!= DefaultInitialWindowSize)
122
list.Add(new Http2PeerSetting(Http2SettingsParameter.SETTINGS_INITIAL_WINDOW_SIZE,
InitialWindowSize
));