class Protocol::Rack::Input

def read_next

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