2 writes to InitialWindowSize
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\Http2\Http2Connection.cs (1)
167_serverSettings.InitialWindowSize = (uint)http2Limits.InitialStreamWindowSize;
src\Shared\ServerInfrastructure\Http2\Http2PeerSettings.cs (1)
66InitialWindowSize = value;
10 references to InitialWindowSize
Microsoft.AspNetCore.Server.Kestrel.Core (10)
Internal\Http2\Http2Connection.cs (2)
930var previousInitialWindowSize = (int)_clientSettings.InitialWindowSize; 945var windowSizeDifference = (int)_clientSettings.InitialWindowSize - previousInitialWindowSize;
Internal\Http2\Http2OutputProducer.cs (1)
70_streamWindow = context.ClientPeerSettings.InitialWindowSize;
Internal\Http2\Http2Stream.cs (5)
60context.ServerPeerSettings.InitialWindowSize, 61context.ServerPeerSettings.InitialWindowSize / 2); 72_http2Output.StreamReset(context.ClientPeerSettings.InitialWindowSize); 642pauseWriterThreshold: _context.ServerPeerSettings.InitialWindowSize + 1, 643resumeWriterThreshold: _context.ServerPeerSettings.InitialWindowSize + 1,
src\Shared\ServerInfrastructure\Http2\Http2PeerSettings.cs (2)
112if (InitialWindowSize != DefaultInitialWindowSize) 114list.Add(new Http2PeerSetting(Http2SettingsParameter.SETTINGS_INITIAL_WINDOW_SIZE, InitialWindowSize));