class Async::HTTP::Endpoint

def protocol

def protocol
	@options.fetch(:protocol) do
		if secure?
			Protocol::HTTPS
		else
			Protocol::HTTP1
		end
	end
end