13 references to Http3PeerSetting
InMemory.FunctionalTests (9)
Http3\Http3ConnectionTests.cs (2)
237new Http3PeerSetting((Http3SettingType) settingIdentifier, 0) // reserved value 411new Http3PeerSetting(Http3SettingType.MaxFieldSectionSize, 100)
Http3\Http3StreamTests.cs (7)
2813new Http3PeerSetting(Core.Internal.Http3.Http3SettingType.MaxFieldSectionSize, 100) 3042new Http3PeerSetting(Internal.Http3.Http3SettingType.MaxFieldSectionSize, 100), 3043new Http3PeerSetting(Internal.Http3.Http3SettingType.EnableWebTransport, 1), 3044new Http3PeerSetting(Internal.Http3.Http3SettingType.H3Datagram, 1) 3230new Http3PeerSetting(Internal.Http3.Http3SettingType.MaxFieldSectionSize, 100), 3231new Http3PeerSetting(Internal.Http3.Http3SettingType.EnableWebTransport, 1), 3232new Http3PeerSetting(Internal.Http3.Http3SettingType.H3Datagram, 1)
Microsoft.AspNetCore.Server.Kestrel.Core (4)
Internal\Http3\Http3PeerSettings.cs (4)
28list.Add(new Http3PeerSetting(Http3SettingType.QPackMaxTableCapacity, HeaderTableSize)); 33list.Add(new Http3PeerSetting(Http3SettingType.MaxFieldSectionSize, MaxRequestHeaderFieldSectionSize)); 38list.Add(new Http3PeerSetting(Http3SettingType.EnableWebTransport, EnableWebTransport)); 43list.Add(new Http3PeerSetting(Http3SettingType.H3Datagram, H3Datagram));