# File lib/whois/server/adapters/verisign.rb, line 36
        def request(string)
          response = query_the_socket("=#{string}", host)
          buffer_append response, host

          if endpoint = extract_referral(response)
            response = query_the_socket(string, endpoint)
            buffer_append response, endpoint
          end
        end