class Protocol::HTTP2::Connection

def closed_stream_id?(id)

This is only valid if the stream doesn't exist in `@streams`.
def closed_stream_id?(id)
	if id.zero?
		# The connection "stream id" can never be closed:
		false
	else
		!idle_stream_id?(id)
	end
end