class Protocol::HTTP::Response

def final?

Whether the status is considered final. Note that 101 is considered final.
def final?
	# 101 is effectively a final status.
	@status and @status >= 200 || @status == 101
end