2 writes to MaxRequestHeaderFieldSectionSize
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\Http3\Http3Connection.cs (2)
65
_serverSettings.
MaxRequestHeaderFieldSectionSize
= (uint)httpLimits.MaxRequestHeadersTotalSize;
874
_clientSettings.
MaxRequestHeaderFieldSectionSize
= (uint)value;
4 references to MaxRequestHeaderFieldSectionSize
Microsoft.AspNetCore.Server.Kestrel.Core (4)
Internal\Http3\Http3FrameWriter.cs (2)
76
_maxTotalHeaderSize = clientPeerSettings.
MaxRequestHeaderFieldSectionSize
> int.MaxValue
78
: (int)clientPeerSettings.
MaxRequestHeaderFieldSectionSize
;
Internal\Http3\Http3PeerSettings.cs (2)
31
if (
MaxRequestHeaderFieldSectionSize
!= DefaultMaxRequestHeaderFieldSize)
33
list.Add(new Http3PeerSetting(Http3SettingType.MaxFieldSectionSize,
MaxRequestHeaderFieldSectionSize
));