class Protocol::HTTP2::Connection

def maximum_concurrent_streams

It is not the same as the number of streams that can be accepted by the connection. The number of streams that can be accepted is determined by the local settings, and the number of streams that can be initiated is determined by the remote settings.

The maximum number of concurrent streams that this connection can initiate. This is a setting that can be changed by the remote peer.
def maximum_concurrent_streams
	@remote_settings.maximum_concurrent_streams
end