class Async::HTTP::RelativeLocation

def initialize(app, maximum_hops = 3)

maximum_hops is the max number of redirects. Set to 0 to allow 1 request with no redirects.
def initialize(app, maximum_hops = 3)
	super(app)
	
	@maximum_hops = maximum_hops
end