7 writes to MaxFrameSize
InMemory.FunctionalTests (5)
Http2\Http2ConnectionTests.cs (4)
3892
_connection.ServerSettings.
MaxFrameSize
= Http2PeerSettings.MaxAllowedMaxFrameSize;
3912
_clientSettings.
MaxFrameSize
= (uint)payloadLength;
3953
_connection.ServerSettings.
MaxFrameSize
= Http2PeerSettings.MinAllowedMaxFrameSize + 1024;
3955
_clientSettings.
MaxFrameSize
= (uint)clientMaxFrame;
Http2\Http2StreamTests.cs (1)
3650
_clientSettings.
MaxFrameSize
= 17000;
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\Http2\Http2Connection.cs (1)
183
_serverSettings.
MaxFrameSize
= (uint)http2Limits.MaxFrameSize;
src\Shared\ServerInfrastructure\Http2\Http2PeerSettings.cs (1)
84
MaxFrameSize
= value;
7 references to MaxFrameSize
Microsoft.AspNetCore.Server.Kestrel.Core (7)
Internal\Http2\Http2Connection.cs (5)
335
while (Http2FrameReader.TryReadFrame(ref buffer, _incomingFrame, _serverSettings.
MaxFrameSize
, out var framePayload))
1010
var previousMaxFrameSize = _clientSettings.
MaxFrameSize
;
1017
if (_clientSettings.
MaxFrameSize
!= previousMaxFrameSize)
1022
_frameWriter.UpdateMaxFrameSize((int)Math.Min(_clientSettings.
MaxFrameSize
, _serverSettings.
MaxFrameSize
));
src\Shared\ServerInfrastructure\Http2\Http2PeerSettings.cs (2)
125
if (
MaxFrameSize
!= DefaultMaxFrameSize)
127
list.Add(new Http2PeerSetting(Http2SettingsParameter.SETTINGS_MAX_FRAME_SIZE,
MaxFrameSize
));