class Falcon::Adapters::Input

def each(&block)

def each(&block)
	return to_enum unless block_given?
	
	while chunk = read_next
		yield chunk
	end
	
	@closed = true
end