class Protocol::Rack::Input

def read_next

def read_next
	if @body
		@body.read
	elsif @closed
		raise IOError, "Stream is not readable, input has been closed!"
	end
end