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)
186_serverSettings.MaxConcurrentStreams = (uint)http2Limits.MaxStreamsPerConnection; 193StreamPool = new PooledStreamStack<Http2Stream>(Math.Min(InitialStreamPoolSize, http2Limits.MaxStreamsPerConnection));
Internal\Http2\Http2FrameWriter.cs (1)
41/// That is, the default value is 800, unless <see cref="Http2Limits.MaxStreamsPerConnection"/> is modified.