2 writes to MaxStreamsPerConnection
Interop.FunctionalTests (2)
HttpClientHttp2InteropTests.cs (2)
1199options.Limits.Http2.MaxStreamsPerConnection = 5; 1260options.Limits.Http2.MaxStreamsPerConnection = 5;
5 references to MaxStreamsPerConnection
Microsoft.AspNetCore.Server.Kestrel.Core (5)
Http2Limits.cs (2)
201writer.WritePropertyName(nameof(MaxStreamsPerConnection)); 202writer.WriteNumberValue(MaxStreamsPerConnection);
Internal\Http2\Http2Connection.cs (2)
163_serverSettings.MaxConcurrentStreams = (uint)http2Limits.MaxStreamsPerConnection; 170StreamPool = new PooledStreamStack<Http2Stream>(Math.Min(InitialStreamPoolSize, http2Limits.MaxStreamsPerConnection));
Internal\Http2\Http2FrameWriter.cs (1)
26/// That is, the default value is 800, unless <see cref="Http2Limits.MaxStreamsPerConnection"/> is modified.