# File lib/openid/fetchers.rb, line 60
    def get_http_obj(host, port)
      http = Net::HTTP.start(host, port)
      http.read_timeout = @read_timeout
      http.open_timeout = @open_timeout
      http
    end