class Falcon::Adapters::Output

def initialize(headers, body)

def initialize(headers, body)
	# We don't trust the user to provide the right length to the transport.
	@length = headers.delete(CONTENT_LENGTH)
	
	@body = body
	@chunks = body.to_enum(:each)
end