Executes a WHOIS query to the Verisign WHOIS interface, resolving any intermediate referral, and appends the response to the client buffer.
@param [String] string @return [void]
# File lib/whois/server/adapters/verisign.rb, line 28 def request(string) response = query_the_socket("=#{string}", host) buffer_append response, host if options[:referral] != false && referral = extract_referral(response) response = query_the_socket(string, referral) buffer_append(response, referral) end end
Generated with the Darkfish Rdoc Generator 2.