class Protocol::HTTP::Response

def preserve_method?

Whether the status is 307 (temporary redirect) and should preserve the method of the request when following the redirect.
def preserve_method?
	@status == 307 || @status == 308
end