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