2 writes to MaxFrameSize
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
));