class Protocol::HTTP::Response

def success?

Whether the status is considered successful.
def success?
	@status and @status >= 200 && @status < 300
end